MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / cJSON_CreateNull

Function cJSON_CreateNull

external/cJSON/cJSON.c:2461–2470  ·  view source on GitHub ↗

Create basic types: */

Source from the content-addressed store, hash-verified

2459
2460/* Create basic types: */
2461CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void)
2462{
2463 cJSON *item = cJSON_New_Item(&global_hooks);
2464 if(item)
2465 {
2466 item->type = cJSON_NULL;
2467 }
2468
2469 return item;
2470}
2471
2472CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2473{

Callers 2

make_cjsonFunction · 0.85
cJSON_AddNullToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected