MCPcopy Create free account
hub / github.com/TheForceEngine/TheForceEngine / cJSON_CreateFalse

Function cJSON_CreateFalse

TheForceEngine/TFE_System/cJSON.c:2417–2426  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected