blob: ee2795f9c616b7a9ecf635f1eb9fe94bfa330f15 (
plain)
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(const char *, FILE*);
const char *get_token_description(enum TOKEN_TYPE);
#endif
|