MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / cJSON_CreateBool

Function cJSON_CreateBool

framework/utils/cJSON.c:2279–2288  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2277}
2278
2279CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool b)
2280{
2281cJSON *item = cJSON_New_Item(&global_hooks);
2282if(item)
2283{
2284item->type = b ? cJSON_True : cJSON_False;
2285}
2286
2287return item;
2288}
2289
2290CJSON_PUBLIC(cJSON *) cJSON_CreateNumber(double num)
2291{

Callers 1

cJSON_AddBoolToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected