MCPcopy Create free account
hub / github.com/SVF-tools/SVF / cJSON_CreateFalse

Function cJSON_CreateFalse

svf/lib/Util/cJSON.cpp:2414–2423  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected