lang/lex.h

9 lines
103 B
C
Raw Normal View History

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