Files
Calculator/src/lexer.c

9 lines
135 B
C
Raw Normal View History

#include "lexer.h"
// Helps state machine for the lexer :)
typedef enum {
WAIT_FOR_NUMBER,
WAIT_FOR_OPERATOR,
} LexerState;