MCPcopy Index your code
hub / github.com/antirez/botlib / cJSON_CreateBool

Function cJSON_CreateBool

cJSON.c:2409–2418  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2407}
2408
2409CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean)
2410{
2411 cJSON *item = cJSON_New_Item(&global_hooks);
2412 if(item)
2413 {
2414 item->type = boolean ? cJSON_True : cJSON_False;
2415 }
2416
2417 return item;
2418}
2419
2420CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num)
2421{

Callers 1

cJSON_AddBoolToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected