mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-11-20 05:35:51 +00:00
11 lines
284 B
C
Executable File
11 lines
284 B
C
Executable File
extern char *statement, *scanpos, *tokenstr;
|
|
extern t_token scantoken, prevtoken;
|
|
extern int tokenlen;
|
|
extern long constval;
|
|
extern char inputline[];
|
|
void parse_error(char *errormsg);
|
|
int next_line(void);
|
|
void scan_rewind(char *backptr);
|
|
int scan_lookahead(void);
|
|
t_token scan(void);
|