20 lines
251 B
C
20 lines
251 B
C
#ifndef PARSER_H
|
|
#define PARSER_H
|
|
|
|
#include "json_entities.h"
|
|
#include "lexer.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct parser_s parser_t;
|
|
|
|
jentity_t *load_json(const char *filepath);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // !PARSER_H
|