MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_CreateFalse

Function cJSON_CreateFalse

cJSON.c:2468–2477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2466}
2467
2468CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2469{
2470 cJSON *item = cJSON_New_Item(&global_hooks);
2471 if(item)
2472 {
2473 item->type = cJSON_False;
2474 }
2475
2476 return item;
2477}
2478
2479CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2480{

Calls 1

cJSON_New_ItemFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…