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

Function cJSON_CreateFalse

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

Source from the content-addressed store, hash-verified

987 return item;
988}
989cJSON *cJSON_CreateFalse()
990{
991 cJSON *item = cJSON_New_Item();
992 if (item)
993 item->type = cJSON_False;
994 return item;
995}
996cJSON *cJSON_CreateBool(int b)
997{
998 cJSON *item = cJSON_New_Item();

Callers

nothing calls this directly

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected