summaryrefslogtreecommitdiff
path: root/lex.h
blob: 9a1be52c2f1c1ecf454c3db187c4775330b81e3f (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(FILE*);
const char *get_token_description(enum TOKEN_TYPE);

#endif