#ifndef HENCE_LEX_H #define HENCE_LEX_H #include #include "token.h" struct token* lex_file(const char *, FILE*); const char *get_token_description(enum TOKEN_TYPE); #endif