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

Function cJSON_CreateTrue

src/cjson.c:2407–2416  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2405}
2406
2407CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2408{
2409 cJSON *item = cJSON_New_Item(&global_hooks);
2410 if(item)
2411 {
2412 item->type = cJSON_True;
2413 }
2414
2415 return item;
2416}
2417
2418CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2419{

Callers 1

cJSON_AddTrueToObjectFunction · 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…