slr/slr.h
2024-05-16 18:40:44 +01:00

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