GRASS 8 Programmer's Manual
8.5.0dev(2025)-34f31bd7be
|
#include "parson.h"
Go to the source code of this file.
JSON_Array* G_json_array | ( | const JSON_Value * | value | ) |
Definition at line 120 of file gjson.c.
References json_array().
JSON_Status G_json_array_append_boolean | ( | JSON_Array * | array, |
int | boolean | ||
) |
Definition at line 156 of file gjson.c.
References json_array_append_boolean().
JSON_Status G_json_array_append_null | ( | JSON_Array * | array | ) |
Definition at line 161 of file gjson.c.
References json_array_append_null().
JSON_Status G_json_array_append_number | ( | JSON_Array * | array, |
double | number | ||
) |
Definition at line 151 of file gjson.c.
References json_array_append_number().
JSON_Status G_json_array_append_string | ( | JSON_Array * | array, |
const char * | string | ||
) |
Definition at line 146 of file gjson.c.
References json_array_append_string().
JSON_Status G_json_array_append_value | ( | JSON_Array * | array, |
JSON_Value * | value | ||
) |
Definition at line 141 of file gjson.c.
References json_array_append_value().
int G_json_array_get_boolean | ( | const JSON_Array * | array, |
size_t | index | ||
) |
Definition at line 136 of file gjson.c.
References json_array_get_boolean().
double G_json_array_get_number | ( | const JSON_Array * | array, |
size_t | index | ||
) |
Definition at line 132 of file gjson.c.
References json_array_get_number().
const char* G_json_array_get_string | ( | const JSON_Array * | array, |
size_t | index | ||
) |
Definition at line 128 of file gjson.c.
References json_array_get_string().
JSON_Value* G_json_array_get_value | ( | const JSON_Array * | array, |
size_t | index | ||
) |
Definition at line 124 of file gjson.c.
References json_array_get_value().
void G_json_free_serialized_string | ( | char * | string | ) |
Definition at line 176 of file gjson.c.
References json_free_serialized_string().
JSON_Object* G_json_object | ( | const JSON_Value * | value | ) |
Definition at line 44 of file gjson.c.
References json_object().
double G_json_object_dotget_number | ( | JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 116 of file gjson.c.
References json_object_dotget_number(), and name.
const char* G_json_object_dotget_string | ( | JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 107 of file gjson.c.
References json_object_dotget_string(), and name.
JSON_Status G_json_object_dotset_number | ( | JSON_Object * | object, |
const char * | name, | ||
double | number | ||
) |
Definition at line 111 of file gjson.c.
References json_object_dotset_number(), and name.
JSON_Status G_json_object_dotset_string | ( | JSON_Object * | object, |
const char * | name, | ||
const char * | string | ||
) |
Definition at line 102 of file gjson.c.
References json_object_dotset_string(), and name.
JSON_Array* G_json_object_get_array | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 53 of file gjson.c.
References json_object_get_array(), and name.
int G_json_object_get_boolean | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 70 of file gjson.c.
References json_object_get_boolean(), and name.
double G_json_object_get_number | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 66 of file gjson.c.
References json_object_get_number(), and name.
JSON_Object* G_json_object_get_object | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 48 of file gjson.c.
References json_object_get_object(), and name.
const char* G_json_object_get_string | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 61 of file gjson.c.
References json_object_get_string(), and name.
JSON_Value* G_json_object_get_value | ( | const JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 57 of file gjson.c.
References json_object_get_value(), and name.
JSON_Value* G_json_object_get_wrapping_value | ( | const JSON_Object * | object | ) |
Definition at line 74 of file gjson.c.
References json_object_get_wrapping_value().
JSON_Status G_json_object_set_boolean | ( | JSON_Object * | object, |
const char * | name, | ||
int | boolean | ||
) |
Definition at line 93 of file gjson.c.
References json_object_set_boolean(), and name.
JSON_Status G_json_object_set_null | ( | JSON_Object * | object, |
const char * | name | ||
) |
Definition at line 98 of file gjson.c.
References json_object_set_null(), and name.
JSON_Status G_json_object_set_number | ( | JSON_Object * | object, |
const char * | name, | ||
double | number | ||
) |
Definition at line 88 of file gjson.c.
References json_object_set_number(), and name.
JSON_Status G_json_object_set_string | ( | JSON_Object * | object, |
const char * | name, | ||
const char * | string | ||
) |
Definition at line 83 of file gjson.c.
References json_object_set_string(), and name.
JSON_Status G_json_object_set_value | ( | JSON_Object * | object, |
const char * | name, | ||
JSON_Value * | value | ||
) |
Definition at line 78 of file gjson.c.
References json_object_set_value(), and name.
char* G_json_serialize_to_string_pretty | ( | const JSON_Value * | value | ) |
Definition at line 171 of file gjson.c.
References json_serialize_to_string_pretty().
void G_json_set_float_serialization_format | ( | const char * | format | ) |
void G_json_value_free | ( | JSON_Value * | value | ) |
Definition at line 180 of file gjson.c.
References json_value_free().
JSON_Object* G_json_value_get_object | ( | const JSON_Value * | value | ) |
Definition at line 39 of file gjson.c.
References json_value_get_object().
JSON_Value_Type G_json_value_get_type | ( | const JSON_Value * | value | ) |
Definition at line 34 of file gjson.c.
References json_value_get_type().
JSON_Value* G_json_value_init_array | ( | void | ) |
Definition at line 29 of file gjson.c.
References json_value_init_array().
JSON_Value* G_json_value_init_object | ( | void | ) |
Definition at line 24 of file gjson.c.
References json_value_init_object().