mirror of
https://github.com/ioquake/jedi-outcast.git
synced 2025-02-24 04:32:17 +00:00
12 lines
253 B
C
12 lines
253 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);
|
|
|