MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / cJSON_CreateFalse

Function cJSON_CreateFalse

lib/cJSON.c:2134–2143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2132}
2133
2134cJSON *cJSON_CreateFalse(void)
2135{
2136 cJSON *item = cJSON_New_Item();
2137 if(item)
2138 {
2139 item->type = cJSON_False;
2140 }
2141
2142 return item;
2143}
2144
2145cJSON *cJSON_CreateBool(cjbool b)
2146{

Callers

nothing calls this directly

Calls 1

cJSON_New_ItemFunction · 0.70

Tested by

no test coverage detected