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

Function cJSON_CreateBool

TheForceEngine/TFE_System/cJSON.c:2428–2437  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2426}
2427
2428CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2429{
2430 cJSON *item = cJSON_New_Item(&global_hooks);
2431 if(item)
2432 {
2433 item->type = boolean ? cJSON_True : cJSON_False;
2434 }
2435
2436 return item;
2437}
2438
2439CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num)
2440{

Callers 1

cJSON_AddBoolToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected