home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / nasm097s.zip / PARSER.H < prev    next >
C/C++ Source or Header  |  1997-10-01  |  535b  |  18 lines

  1. /* parser.h   header file for the parser module of the Netwide
  2.  *            Assembler
  3.  *
  4.  * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
  5.  * Julian Hall. All rights reserved. The software is
  6.  * redistributable under the licence given in the file "Licence"
  7.  * distributed in the NASM archive.
  8.  */
  9.  
  10. #ifndef NASM_PARSER_H
  11. #define NASM_PARSER_H
  12.  
  13. insn *parse_line (int pass, char *buffer, insn *result,
  14.           efunc error, evalfunc evaluate, evalinfofunc einfo);
  15. void cleanup_insn (insn *instruction);
  16.  
  17. #endif
  18.