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