9 lines
103 B
C
9 lines
103 B
C
|
#ifndef __LEX_H__
|
||
|
#define __LEX_H__
|
||
|
|
||
|
#include "tok.h"
|
||
|
|
||
|
TokList lex(const char *s);
|
||
|
|
||
|
#endif /* LEX_H */
|