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

Function cJSON_CreateTrue

TheForceEngine/TFE_System/cJSON.c:2406–2415  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2404}
2405
2406CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2407{
2408 cJSON *item = cJSON_New_Item(&global_hooks);
2409 if(item)
2410 {
2411 item->type = cJSON_True;
2412 }
2413
2414 return item;
2415}
2416
2417CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void)
2418{

Callers 1

cJSON_AddTrueToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected