Add the json parser

This commit is contained in:
2023-07-02 19:29:32 +01:00
parent 10f1d5686e
commit 9a686a2692
8 changed files with 1931 additions and 0 deletions

View 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