dsekai
World engine for retrocomputers.
Loading...
Searching...
No Matches
json.h
1
2#ifndef JSON_H
3#define JSON_H
4
12#ifndef JSON_C
13#define JSMN_HEADER
14#endif /* JSON_C */
15#define JSMN_PARENT_LINKS
16#include "jsmn.h"
17
18int16_t json_load(
19 char* json_buffer, uint16_t json_buffer_sz,
20 struct jsmntok* tokens, uint16_t tokens_sz );
21int16_t json_get_token_idx(
22 const char*, uint16_t, jsmntok_t*, uint16_t, const char*, uint16_t );
23int16_t json_token_id_from_path(
24 const char*, uint16_t, jsmntok_t*, uint16_t, const char* );
25int16_t json_int_from_path(
26 const char*, uint16_t, jsmntok_t*, uint16_t, const char* );
27int16_t json_bool_from_path(
28 const char* path, uint16_t path_sz,
29 struct jsmntok* tokens, uint16_t tokens_sz, const char* buf );
30int16_t json_str_from_path(
31 const char*, uint16_t, char*, uint16_t, jsmntok_t*, uint16_t, const char* );
32
39#endif /* JSON_H */
40