#include "json_object.h"
Go to the source code of this file.
Classes | |
struct | json_tokener |
struct | json_tokener_srec |
Macros | |
#define | JSON_TOKENER_MAX_DEPTH 32 |
Functions | |
void | json_tokener_free (struct json_tokener *tok) |
struct json_tokener * | json_tokener_new (void) |
struct json_object * | json_tokener_parse (const char *str) |
struct json_object * | json_tokener_parse_ex (struct json_tokener *tok, const char *str, int len) |
void | json_tokener_reset (struct json_tokener *tok) |
Variables | |
const char * | json_tokener_errors [] |
#define JSON_TOKENER_MAX_DEPTH 32 |
Definition at line 67 of file json_tokener.h.
enum json_tokener_error |
Definition at line 17 of file json_tokener.h.
enum json_tokener_state |
Definition at line 34 of file json_tokener.h.
void json_tokener_free | ( | struct json_tokener * | tok | ) |
Definition at line 66 of file json_tokener.c.
struct json_tokener* json_tokener_new | ( | void | ) |
Definition at line 58 of file json_tokener.c.
struct json_object* json_tokener_parse | ( | const char * | str | ) |
Definition at line 92 of file json_tokener.c.
struct json_object* json_tokener_parse_ex | ( | struct json_tokener * | tok, |
const char * | str, | ||
int | len | ||
) |
Definition at line 133 of file json_tokener.c.
void json_tokener_reset | ( | struct json_tokener * | tok | ) |
Definition at line 83 of file json_tokener.c.
const char* json_tokener_errors[] |
Definition at line 40 of file json_tokener.c.