MCPcopy Create free account
hub / github.com/Netis/cloud-probe / cJSON_CreateFalse

Function cJSON_CreateFalse

cpworker/src/cJSON/cJSON.c:2430–2439  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2428}
2429
2430CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2431{
2432 cJSON *item = cJSON_New_Item(&global_hooks);
2433 if(item)
2434 {
2435 item->type = cJSON_False;
2436 }
2437
2438 return item;
2439}
2440
2441CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2442{

Callers 1

cJSON_AddFalseToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected