MCPcopy Create free account
hub / github.com/alibaba/CicadaPlayer / cJSON_AddNullToObject

Function cJSON_AddNullToObject

framework/utils/cJSON.c:1963–1973  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1961}
1962
1963CJSON_PUBLIC(cJSON*) cJSON_AddNullToObject(cJSON * const object, const char * const name)
1964{
1965cJSON *null = cJSON_CreateNull();
1966if (add_item_to_object(object, name, null, &global_hooks, false))
1967{
1968return null;
1969}
1970
1971cJSON_Delete(null);
1972return NULL;
1973}
1974
1975CJSON_PUBLIC(cJSON*) cJSON_AddTrueToObject(cJSON * const object, const char * const name)
1976{

Callers

nothing calls this directly

Calls 3

cJSON_CreateNullFunction · 0.85
add_item_to_objectFunction · 0.85
cJSON_DeleteFunction · 0.85

Tested by

no test coverage detected