9 lines
109 B
C
9 lines
109 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include "lexer.h"
|
|
|
|
void parse_token(token_t token);
|
|
|
|
#endif // !PARSER_H
|