Simple JSON
0.1
A free simple json library for C
|
Go to the source code of this file.
Macros | |
#define | MIN(a, b) (a<=b?a:b) |
#define | MAX(a, b) (a>=b?a:b) |
#define | false 0 |
#define | true 1 |
Functions | |
char * | sj_get_error () |
get the last reported error for simple json More... | |
void | sj_set_error (char *error) |
used internally to se the error message More... | |
#define false 0 |
Definition at line 13 of file simple_json_error.h.
#define MAX | ( | a, | |
b | |||
) | (a>=b?a:b) |
Definition at line 9 of file simple_json_error.h.
#define MIN | ( | a, | |
b | |||
) | (a<=b?a:b) |
Definition at line 5 of file simple_json_error.h.
#define true 1 |
Definition at line 16 of file simple_json_error.h.
char* sj_get_error | ( | ) |
get the last reported error for simple json
Definition at line 6 of file simple_json_error.c.
void sj_set_error | ( | char * | error | ) |
used internally to se the error message
error | the error message to set |
Definition at line 11 of file simple_json_error.c.