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

Function cJSON_CreateTrue

cJSON.c:2387–2396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2385}
2386
2387CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2388{
2389 cJSON *item = cJSON_New_Item(&global_hooks);
2390 if(item)
2391 {
2392 item->type = cJSON_True;
2393 }
2394
2395 return item;
2396}
2397
2398CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2399{

Callers 1

cJSON_AddTrueToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected