radish/slr.h

17 lines
175 B
C
Raw Normal View History

2024-05-16 19:40:44 +02:00
#ifndef SLR_H_
#define SLR_H_
typedef enum {
INT,
KEYWORD,
SEPARATOR,
END_OF_TOKENS,
} TokenType;
typedef struct {
TokenType type;
char *value;
} Token;
#endif