8 lines
86 B
C
8 lines
86 B
C
#ifndef LEXER_H_
|
|
#define LEXER_H_
|
|
|
|
#include "slr.h"
|
|
|
|
Token *lexer(char *buf);
|
|
|
|
#endif
|