Example #1
0
/* Default options for cJSON_Parse */
cJSON *cJSON_Parse(const char *value, ngx_pool_t *pool) {return cJSON_ParseWithOpts(value,0,0, pool);}
Example #2
0
/* Default options for cJSON_Parse */
cJSON *cJSON_Parse(const char *value)
{
    return(cJSON_ParseWithOpts(value,0,0));
}
Example #3
0
/* Default options for cJSON_Parse */
cJSON *ICACHE_FLASH_ATTR
cJSON_Parse(const char *value)
{
    return cJSON_ParseWithOpts(value, 0, 0);
}