cobol-interpreter-lab/lab-3/token.h

9 lines
135 B
C

typedef enum {
TOKEN_EOF = 0,
TOKEN_WHILE,
TOKEN_ADD,
TOKEN_ASSIGNMENT,
TOKEN_IDENT,
TOKEN_NUMBER,
TOKEN_ERROR
} token_t;