MCPcopy Create free account
hub / github.com/Bwar/CJsonObject / cJSON_CreateFalse

Function cJSON_CreateFalse

cJSON.c:983–989  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

981 return item;
982}
983cJSON *cJSON_CreateFalse()
984{
985 cJSON *item = cJSON_New_Item();
986 if (item)
987 item->type = cJSON_False;
988 return item;
989}
990cJSON *cJSON_CreateBool(int b)
991{
992 cJSON *item = cJSON_New_Item();

Callers

nothing calls this directly

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected