MCPcopy Index your code
hub / github.com/antirez/botlib / cJSON_CreateFalse

Function cJSON_CreateFalse

cJSON.c:2398–2407  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2396}
2397
2398CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2399{
2400 cJSON *item = cJSON_New_Item(&global_hooks);
2401 if(item)
2402 {
2403 item->type = cJSON_False;
2404 }
2405
2406 return item;
2407}
2408
2409CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2410{

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected