#ifndef __COMMAND_PARSER_H__ #define __COMMAND_PARSER_H__ #include "OSLib.h" #include "centry.h" typedef struct command_exprval { int type; union { int num; char *str; command_symbol *sym; } u; } command_exprval; void parse_error(const char *format, ...); #include "cexit.h" #endif