Add the json parser
This commit is contained in:
19
haversine_02/include/json/parser.h
Normal file
19
haversine_02/include/json/parser.h
Normal file
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user