| 2428 | } |
| 2429 | |
| 2430 | CJSON_PUBLIC(cJSON *) cJSON_CreateFalse(void) |
| 2431 | { |
| 2432 | cJSON *item = cJSON_New_Item(&global_hooks); |
| 2433 | if(item) |
| 2434 | { |
| 2435 | item->type = cJSON_False; |
| 2436 | } |
| 2437 | |
| 2438 | return item; |
| 2439 | } |
| 2440 | |
| 2441 | CJSON_PUBLIC(cJSON *) cJSON_CreateBool(cJSON_bool boolean) |
| 2442 | { |
no test coverage detected