|
| G_JSON_Value * | G_json_value_init_object (void) |
| G_JSON_Value * | G_json_value_init_array (void) |
| G_JSON_Value_Type | G_json_value_get_type (const G_JSON_Value *value) |
| G_JSON_Object * | G_json_value_get_object (const G_JSON_Value *value) |
| G_JSON_Object * | G_json_object (const G_JSON_Value *value) |
| G_JSON_Object * | G_json_object_get_object (const G_JSON_Object *object, const char *name) |
| G_JSON_Array * | G_json_object_get_array (const G_JSON_Object *object, const char *name) |
| G_JSON_Value * | G_json_object_get_value (const G_JSON_Object *object, const char *name) |
| const char * | G_json_object_get_string (const G_JSON_Object *object, const char *name) |
| double | G_json_object_get_number (const G_JSON_Object *object, const char *name) |
| int | G_json_object_get_boolean (const G_JSON_Object *object, const char *name) |
| G_JSON_Value * | G_json_object_get_wrapping_value (const G_JSON_Object *object) |
| G_JSON_Status | G_json_object_set_value (G_JSON_Object *object, const char *name, G_JSON_Value *value) |
| G_JSON_Status | G_json_object_set_string (G_JSON_Object *object, const char *name, const char *string) |
| G_JSON_Status | G_json_object_set_number (G_JSON_Object *object, const char *name, double number) |
| G_JSON_Status | G_json_object_set_boolean (G_JSON_Object *object, const char *name, int boolean) |
| G_JSON_Status | G_json_object_set_null (G_JSON_Object *object, const char *name) |
| G_JSON_Status | G_json_object_dotset_string (G_JSON_Object *object, const char *name, const char *string) |
| const char * | G_json_object_dotget_string (G_JSON_Object *object, const char *name) |
| G_JSON_Status | G_json_object_dotset_number (G_JSON_Object *object, const char *name, double number) |
| double | G_json_object_dotget_number (G_JSON_Object *object, const char *name) |
| G_JSON_Status | G_json_object_dotset_null (G_JSON_Object *object, const char *name) |
| G_JSON_Array * | G_json_array (const G_JSON_Value *value) |
| G_JSON_Value * | G_json_array_get_value (const G_JSON_Array *array, size_t index) |
| const char * | G_json_array_get_string (const G_JSON_Array *array, size_t index) |
| double | G_json_array_get_number (const G_JSON_Array *array, size_t index) |
| int | G_json_array_get_boolean (const G_JSON_Array *array, size_t index) |
| G_JSON_Status | G_json_array_append_value (G_JSON_Array *array, G_JSON_Value *value) |
| G_JSON_Status | G_json_array_append_string (G_JSON_Array *array, const char *string) |
| G_JSON_Status | G_json_array_append_number (G_JSON_Array *array, double number) |
| G_JSON_Status | G_json_array_append_boolean (G_JSON_Array *array, int boolean) |
| G_JSON_Status | G_json_array_append_null (G_JSON_Array *array) |
| void | G_json_set_float_serialization_format (const char *format) |
| char * | G_json_serialize_to_string_pretty (const G_JSON_Value *value) |
| char * | G_json_serialize_to_string (const G_JSON_Value *value) |
| void | G_json_free_serialized_string (char *string) |
| void | G_json_value_free (G_JSON_Value *value) |
GRASS JSON Library.
- Since
- 8.5
Definition in file gjson.c.