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

#include "syntax.h"

#define INITIAL_TOKEN_LIST_SIZE 20

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

#endif