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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
2006-10-19
|
300 b
|
22 lines
#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