MCPcopy Index your code
hub / github.com/antirez/botlib / cJSON_CreateNull

Function cJSON_CreateNull

cJSON.c:2376–2385  ·  view source on GitHub ↗

Create basic types: */

Source from the content-addressed store, hash-verified

2374
2375/* Create basic types: */
2376CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void)
2377{
2378 cJSON *item = cJSON_New_Item(&global_hooks);
2379 if(item)
2380 {
2381 item->type = cJSON_NULL;
2382 }
2383
2384 return item;
2385}
2386
2387CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2388{

Callers 1

cJSON_AddNullToObjectFunction · 0.85

Calls 1

cJSON_New_ItemFunction · 0.85

Tested by

no test coverage detected