16 lines
175 B
C
16 lines
175 B
C
#ifndef SLR_H_
|
|
#define SLR_H_
|
|
|
|
typedef enum {
|
|
INT,
|
|
KEYWORD,
|
|
SEPARATOR,
|
|
END_OF_TOKENS,
|
|
} TokenType;
|
|
|
|
typedef struct {
|
|
TokenType type;
|
|
char *value;
|
|
} Token;
|
|
|
|
#endif
|