home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.7z / ftp.whtech.com / emulators / v9t9 / linux / sources / V9t9 / source / command_parser.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-10-19  |  300 b   |  22 lines

  1. #ifndef __COMMAND_PARSER_H__
  2. #define __COMMAND_PARSER_H__
  3.  
  4. #include "OSLib.h"
  5.  
  6. #include "centry.h"
  7.  
  8. typedef struct command_exprval {
  9.     int     type;
  10.     union {
  11.         int    num;
  12.         char *str;
  13.         command_symbol *sym;
  14.     }        u;
  15. }    command_exprval;
  16.  
  17. void parse_error(const char *format, ...);
  18.  
  19. #include "cexit.h"    
  20.  
  21. #endif
  22.