blob: 32a910ad81c18ce763385a70f63cc31054b8cef2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef TOKEN_H
#define MAXTOKEN 100
enum { NAME, PARENS, BRACKETS };
int gettoken(void);
int peaktoken(void);
extern char tokentype;
extern char token[MAXTOKEN];
#define TOKEN_H
#endif
|