|
Simple JSON
0.1
A free simple json library for C
|
#include "simple_json_value.h"

Go to the source code of this file.
Functions | |
| void | sj_object_free (SJson *object) |
| free a previously allocated json object More... | |
| void | sj_object_insert (SJson *object, char *key, SJson *value) |
| insert data into a json object More... | |
| SJString * | sj_object_to_json_string (SJson *object) |
| get the json object back as a formatted json string More... | |
| void sj_object_free | ( | SJson * | object | ) |
free a previously allocated json object
| object | the object to free |
Definition at line 100 of file simple_json_object.c.
insert data into a json object
| object | the json object to insert into |
| key | the string to identify the object value with |
| value | the value of the key |
Definition at line 58 of file simple_json_object.c.
get the json object back as a formatted json string
| object | the object to convert |
Definition at line 143 of file simple_json_object.c.