| 2005 | } |
| 2006 | |
| 2007 | CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean) |
| 2008 | { |
| 2009 | cJSON *bool_item = cJSON_CreateBool(boolean); |
| 2010 | if (add_item_to_object(object, name, bool_item, &global_hooks, false)) |
| 2011 | { |
| 2012 | return bool_item; |
| 2013 | } |
| 2014 | |
| 2015 | cJSON_Delete(bool_item); |
| 2016 | return NULL; |
| 2017 | } |
| 2018 | |
| 2019 | CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number) |
| 2020 | { |
nothing calls this directly
no test coverage detected