Home
last modified time | relevance | path

Searched refs:cJSON_bool (Results 1 – 2 of 2) sorted by relevance

/iperf/src/
H A Dcjson.h137 typedef int cJSON_bool; typedef
168 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const…
189 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);
190 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);
191 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);
192 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);
193 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);
195 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
197 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);
203 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
[all …]
H A Dcjson.c69 #define true ((cJSON_bool)1)
74 #define false ((cJSON_bool)0)
440 cJSON_bool noalloc;
441 cJSON_bool format; /* is this print a formatted print */
547 static cJSON_bool compare_double(double a, double b) in compare_double()
1297 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const… in cJSON_PrintPreallocated()
1953 static cJSON_bool add_item_to_array(cJSON *array, cJSON *item) in add_item_to_array()
2343 static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJS… in replace_item_in_object()
2405 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) in cJSON_CreateBool()
2942 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item) in cJSON_IsRaw()
[all …]