aboutsummaryrefslogtreecommitdiff
path: root/5.20/token.h
blob: 327b1e78a522c1ed1a9f53365c28a62d33ce2747 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef TOKEN_H

#define MAXTOKEN	100

enum { NAME, PARENS, BRACKETS };
enum { NO, YES };

int gettoken(void);
int peaktoken(void);
int isdatatyp(void);

extern char tokentype;
extern char token[MAXTOKEN];
extern char prevtoken;

#define TOKEN_H
#endif