![]()
![]()
#define cJSON__h
![]()
![]()
#define __WINDOWS__
![]()
![]()
#define CJSON_CDECL
![]()
![]()
#define CJSON_STDCALL
![]()
![]()
#define CJSON_EXPORT_SYMBOLS
![]()
![]()
#define CJSON_PUBLIC
![]()
![]()
#define CJSON_PUBLIC
![]()
![]()
#define CJSON_PUBLIC
![]()
![]()
#define CJSON_CDECL
![]()
![]()
#define CJSON_STDCALL
![]()
![]()
#define CJSON_PUBLIC
![]()
![]()
#define CJSON_PUBLIC
![]()
![]()
#define CJSON_VERSION_MAJOR
![]()
![]()
#define CJSON_VERSION_MINOR
![]()
![]()
#define CJSON_VERSION_PATCH
![]()
![]()
#include <stddef.h>
![]()
![]()
#define cJSON_Invalid
![]()
![]()
#define cJSON_False
![]()
![]()
#define cJSON_True
![]()
![]()
#define cJSON_NULL
![]()
![]()
#define cJSON_Number
![]()
![]()
#define cJSON_String
![]()
![]()
#define cJSON_Array
![]()
![]()
#define cJSON_Object
![]()
![]()
#define cJSON_Raw
![]()
![]()
#define cJSON_IsReference
![]()
![]()
#define cJSON_StringIsConst
![]()
![]()
cJSON
![]()
![]()
next
![]()
![]()
prev
![]()
![]()
child
![]()
![]()
type
![]()
![]()
valuestring
![]()
![]()
valueint
![]()
![]()
valuedouble
![]()
![]()
string
![]()
![]()
cJSON_Hooks
![]()
![]()
malloc_fn
![]()
![]()
free_fn
![]()
![]()
cJSON_bool
![]()
![]()
#define CJSON_NESTING_LIMIT
![]()
![]()
cJSON_Version();
![]()
![]()
cJSON_InitHooks(cJSON_Hooks *);
![]()
![]()
cJSON_Parse(const char *);
![]()
![]()
cJSON_ParseWithLength(const char *, size_t);
![]()
![]()
cJSON_ParseWithOpts(const char *, const char **, cJSON_bool);
![]()
![]()
cJSON_ParseWithLengthOpts(const char *, size_t, const char **, cJSON_bool);
![]()
![]()
cJSON_Print(const cJSON *);
![]()
![]()
cJSON_PrintUnformatted(const cJSON *);
![]()
![]()
cJSON_PrintBuffered(const cJSON *, int, cJSON_bool);
![]()
![]()
cJSON_PrintPreallocated(cJSON *, char *, const int, const cJSON_bool);
![]()
![]()
cJSON_Delete(cJSON *);
![]()
![]()
cJSON_GetArraySize(const cJSON *);
![]()
![]()
cJSON_GetArrayItem(const cJSON *, int);
![]()
![]()
cJSON_GetObjectItem(const cJSON *const, const char *const);
![]()
![]()
cJSON_GetObjectItemCaseSensitive(const cJSON *const, const char *const);
![]()
![]()
cJSON_HasObjectItem(const cJSON *, const char *);
![]()
![]()
cJSON_GetErrorPtr();
![]()
![]()
cJSON_GetStringValue(const cJSON *const);
![]()
![]()
cJSON_GetNumberValue(const cJSON *const);
![]()
![]()
cJSON_IsInvalid(const cJSON *const);
![]()
![]()
cJSON_IsFalse(const cJSON *const);
![]()
![]()
cJSON_IsTrue(const cJSON *const);
![]()
![]()
cJSON_IsBool(const cJSON *const);
![]()
![]()
cJSON_IsNull(const cJSON *const);
![]()
![]()
cJSON_IsNumber(const cJSON *const);
![]()
![]()
cJSON_IsString(const cJSON *const);
![]()
![]()
cJSON_IsArray(const cJSON *const);
![]()
![]()
cJSON_IsObject(const cJSON *const);
![]()
![]()
cJSON_IsRaw(const cJSON *const);
![]()
![]()
cJSON_CreateNull();
![]()
![]()
cJSON_CreateTrue();
![]()
![]()
cJSON_CreateFalse();
![]()
![]()
cJSON_CreateBool(cJSON_bool);
![]()
![]()
cJSON_CreateNumber(double);
![]()
![]()
cJSON_CreateString(const char *);
![]()
![]()
cJSON_CreateRaw(const char *);
![]()
![]()
cJSON_CreateArray();
![]()
![]()
cJSON_CreateObject();
![]()
![]()
cJSON_CreateStringReference(const char *);
![]()
![]()
cJSON_CreateObjectReference(const cJSON *);
![]()
![]()
cJSON_CreateArrayReference(const cJSON *);
![]()
![]()
cJSON_CreateIntArray(const int *, int);
![]()
![]()
cJSON_CreateFloatArray(const float *, int);
![]()
![]()
cJSON_CreateDoubleArray(const double *, int);
![]()
![]()
cJSON_CreateStringArray(const char *const *, int);
![]()
![]()
cJSON_AddItemToArray(cJSON *, cJSON *);
![]()
![]()
cJSON_AddItemToObject(cJSON *, const char *, cJSON *);
![]()
![]()
cJSON_AddItemToObjectCS(cJSON *, const char *, cJSON *);
![]()
![]()
cJSON_AddItemReferenceToArray(cJSON *, cJSON *);
![]()
![]()
cJSON_AddItemReferenceToObject(cJSON *, const char *, cJSON *);
![]()
![]()
cJSON_DetachItemViaPointer(cJSON *, cJSON *const);
![]()
![]()
cJSON_DetachItemFromArray(cJSON *, int);
![]()
![]()
cJSON_DeleteItemFromArray(cJSON *, int);
![]()
![]()
cJSON_DetachItemFromObject(cJSON *, const char *);
![]()
![]()
cJSON_DetachItemFromObjectCaseSensitive(cJSON *, const char *);
![]()
![]()
cJSON_DeleteItemFromObject(cJSON *, const char *);
![]()
![]()
cJSON_DeleteItemFromObjectCaseSensitive(cJSON *, const char *);
![]()
![]()
cJSON_InsertItemInArray(cJSON *, int, cJSON *);
![]()
![]()
cJSON_ReplaceItemViaPointer(cJSON *const, cJSON *const, cJSON *);
![]()
![]()
cJSON_ReplaceItemInArray(cJSON *, int, cJSON *);
![]()
![]()
cJSON_ReplaceItemInObject(cJSON *, const char *, cJSON *);
![]()
![]()
cJSON_ReplaceItemInObjectCaseSensitive(cJSON *, const char *, cJSON *);
![]()
![]()
cJSON_Duplicate(const cJSON *, cJSON_bool);
![]()
![]()
cJSON_Compare(const cJSON *const, const cJSON *const, const cJSON_bool);
![]()
![]()
cJSON_Minify(char *);
![]()
![]()
cJSON_AddNullToObject(cJSON *const, const char *const);
![]()
![]()
cJSON_AddTrueToObject(cJSON *const, const char *const);
![]()
![]()
cJSON_AddFalseToObject(cJSON *const, const char *const);
![]()
![]()
cJSON_AddBoolToObject(cJSON *const, const char *const, const cJSON_bool);
![]()
![]()
cJSON_AddNumberToObject(cJSON *const, const char *const, const double);
![]()
![]()
cJSON_AddStringToObject(cJSON *const, const char *const, const char *const);
![]()
![]()
cJSON_AddRawToObject(cJSON *const, const char *const, const char *const);
![]()
![]()
cJSON_AddObjectToObject(cJSON *const, const char *const);
![]()
![]()
cJSON_AddArrayToObject(cJSON *const, const char *const);
![]()
![]()
#define cJSON_SetIntValue
![]()
![]()
cJSON_SetNumberHelper(cJSON *, double);
![]()
![]()
#define cJSON_SetNumberValue
![]()
![]()
cJSON_SetValuestring(cJSON *, const char *);
![]()
![]()
#define cJSON_ArrayForEach
![]()
![]()
cJSON_malloc(size_t);
![]()
![]()
cJSON_free(void *);