/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
/* For analysing failed parses. This returns a pointer to the parse error. You'll probably need to look a few chars back to make sense of it. Defined when cJSON_Parse() returns 0. 0 when cJSON_Parse() succeeds. */
externconstchar*cJSON_GetErrorPtr();
externconstchar*cJSON_GetErrorPtr(void);
/* These calls create a cJSON item of the appropriate type. */
/* These calls create a cJSON item of the appropriate type. */
externcJSON*cJSON_CreateNull();
externcJSON*cJSON_CreateNull(void);
externcJSON*cJSON_CreateTrue();
externcJSON*cJSON_CreateTrue(void);
externcJSON*cJSON_CreateFalse();
externcJSON*cJSON_CreateFalse(void);
externcJSON*cJSON_CreateBool(intb);
externcJSON*cJSON_CreateBool(intb);
externcJSON*cJSON_CreateNumber(doublenum);
externcJSON*cJSON_CreateNumber(doublenum);
externcJSON*cJSON_CreateString(constchar*string);
externcJSON*cJSON_CreateString(constchar*string);
externcJSON*cJSON_CreateArray();
externcJSON*cJSON_CreateArray(void);
externcJSON*cJSON_CreateObject();
externcJSON*cJSON_CreateObject(void);
/* These utilities create an Array of count items. */
/* These utilities create an Array of count items. */