MCPcopy Index your code
hub / github.com/DaveGamble/cJSON / cJSON_CreateNull

Function cJSON_CreateNull

cJSON.c:2446–2455  ·  view source on GitHub ↗

Create basic types: */

Source from the content-addressed store, hash-verified

2444
2445/* Create basic types: */
2446CJSON_PUBLIC(cJSON *) cJSON_CreateNull(void)
2447{
2448 cJSON *item = cJSON_New_Item(&global_hooks);
2449 if(item)
2450 {
2451 item->type = cJSON_NULL;
2452 }
2453
2454 return item;
2455}
2456
2457CJSON_PUBLIC(cJSON *) cJSON_CreateTrue(void)
2458{

Calls 1

cJSON_New_ItemFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…