MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_CreateFalse

Function cJSON_CreateFalse

external/cJSON/cJSON.c:2483–2492  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2481}
2482
2483CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2484{
2485 cJSON *item = cJSON_New_Item(&global_hooks);
2486 if(item)
2487 {
2488 item->type = cJSON_False;
2489 }
2490
2491 return item;
2492}
2493
2494CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2495{

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected