MCPcopy Create free account
hub / github.com/OpenDriveLab/OpenLane / cJSON_CreateTrue

Function cJSON_CreateTrue

eval/LANE_evaluation/lane2d/src/cJSON.c:982–988  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

980 return item;
981}
982cJSON *cJSON_CreateTrue()
983{
984 cJSON *item = cJSON_New_Item();
985 if (item)
986 item->type = cJSON_True;
987 return item;
988}
989cJSON *cJSON_CreateFalse()
990{
991 cJSON *item = cJSON_New_Item();

Callers

nothing calls this directly

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected