aboutsummaryrefslogtreecommitdiff
path: root/5.20/token.h
blob: 7e4fbec1e002434f59bc7df19fc4718c44ad0eec (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 isdtspec(void);

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

#define TOKEN_H
#endif