12 lines
182 B
C
12 lines
182 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include "json_entities.h"
|
|
#include "lexer.h"
|
|
|
|
typedef struct parser_s parser_t;
|
|
|
|
jentity_t *load_json(const char *filepath);
|
|
|
|
#endif // !PARSER_H
|