lang/lex.h

9 lines
122 B
C
Raw Normal View History

2021-12-21 01:18:22 +01:00
#ifndef __LEX_H__
#define __LEX_H__
#include "tok.h"
2021-12-25 12:16:06 +01:00
TokList lex(const char *s, Pool *static_vars);
2021-12-21 01:18:22 +01:00
#endif /* LEX_H */