mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2025-02-24 20:52:34 +00:00
13 lines
265 B
C
13 lines
265 B
C
|
// parse.h -- text file parsing routines
|
||
|
|
||
|
#define MAXTOKEN 1024
|
||
|
|
||
|
extern char token[MAXTOKEN];
|
||
|
extern int scriptline;
|
||
|
|
||
|
void StartTokenParsing (char *data);
|
||
|
qboolean GetToken (qboolean crossline);
|
||
|
void UngetToken (void);
|
||
|
qboolean TokenAvailable (void);
|
||
|
|