aboutsummaryrefslogtreecommitdiff
path: root/interpreter/lex.h
blob: 45a5a3c1dfbd2db1bab0e3743dd1ef8eb6cf4b4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _H_LEX
#define _H_LEX

#include "syntax.h"

#define INITIAL_TOKEN_LIST_SIZE 20

struct token_list *lex(struct token_list*, char*);

#endif