MCPcopy Create free account
hub / github.com/OpenIPC/firmware / cJSON_CreateTrue

Function cJSON_CreateTrue

general/package/xmdp/src/cjson/cJSON.c:2394–2403  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2392}
2393
2394CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2395{
2396 cJSON *item = cJSON_New_Item(&global_hooks);
2397 if(item)
2398 {
2399 item->type = cJSON_True;
2400 }
2401
2402 return item;
2403}
2404
2405CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2406{

Callers 1

cJSON_AddTrueToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected