Parse JSON token. More...
Data Fields | |
union { | |
uint32_t uint32 | |
Signed 32bit value. | |
uint64_t uint64 | |
Unsigned 32bit value. | |
int64_t int64 | |
Unsigned 64bit value. | |
char * str | |
Signed 64bit value. | |
zos_bool_t boolean | |
Null-terminated string value. | |
void * ptr | |
Boolean value. | |
} | data |
Next token in linked list. | |
json_type_t | type |
Union of supported data types. | |
uint8_t | reserved [3] |
The data type of this JSON token. | |
Detailed Description
Parse JSON token.
This holds a parsed token from a JSON formatted string/
- Examples:
- basic/display_stream/display_stream.c, basic/http_server/json_parser_request_processor.c, basic/json_parser/parse_all_examples.c, basic/json_parser/parse_example1.c, basic/json_parser/parse_example2.c, basic/json_parser/parse_example3.c, basic/json_parser/parse_example9.c, nxp/nfc3d/cloud_rest.c, and nxp/nfc3d/cloud_websocket.c.