1 2 3 4 5 6 7 8 9 10 11
#ifndef HENCE_LEX_H #define HENCE_LEX_H #include <stdio.h> #include "token.h" struct token* lex_file(FILE*); const char *get_token_description(enum TOKEN_TYPE); #endif