MCPcopy Create free account
hub / github.com/esnet/iperf / cJSON_CreateFalse

Function cJSON_CreateFalse

src/cjson.c:2418–2427  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2416}
2417
2418CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2419{
2420 cJSON *item = cJSON_New_Item(&global_hooks);
2421 if(item)
2422 {
2423 item->type = cJSON_False;
2424 }
2425
2426 return item;
2427}
2428
2429CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2430{

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…