Lines Matching refs:cJSON_bool
86 typedef int cJSON_bool; typedef
151 CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON_bool fmt);
154 CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buffer, const int length, const…
165 CJSON_PUBLIC(cJSON_bool) cJSON_HasObjectItem(const cJSON *object, const char *string);
170 CJSON_PUBLIC(cJSON_bool) cJSON_IsInvalid(const cJSON * const item);
171 CJSON_PUBLIC(cJSON_bool) cJSON_IsFalse(const cJSON * const item);
172 CJSON_PUBLIC(cJSON_bool) cJSON_IsTrue(const cJSON * const item);
173 CJSON_PUBLIC(cJSON_bool) cJSON_IsBool(const cJSON * const item);
174 CJSON_PUBLIC(cJSON_bool) cJSON_IsNull(const cJSON * const item);
175 CJSON_PUBLIC(cJSON_bool) cJSON_IsNumber(const cJSON * const item);
176 CJSON_PUBLIC(cJSON_bool) cJSON_IsString(const cJSON * const item);
177 CJSON_PUBLIC(cJSON_bool) cJSON_IsArray(const cJSON * const item);
178 CJSON_PUBLIC(cJSON_bool) cJSON_IsObject(const cJSON * const item);
179 CJSON_PUBLIC(cJSON_bool) cJSON_IsRaw(const cJSON * const item);
185 CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean);
221 CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSO…
227 CJSON_PUBLIC(cJSON *) cJSON_Duplicate(const cJSON *item, cJSON_bool recurse);
233 CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bo…
238 … cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_ter…