MCPcopy Create free account
hub / github.com/Wassimulator/CactusViewer / cJSON_AddBoolToObject

Function cJSON_AddBoolToObject

src/cJSON.c:2115–2125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2113}
2114
2115CJSON_PUBLIC(cJSON*) cJSON_AddBoolToObject(cJSON * const object, const char * const name, const cJSON_bool boolean)
2116{
2117 cJSON *bool_item = cJSON_CreateBool(boolean);
2118 if (add_item_to_object(object, name, bool_item, &global_hooks, false))
2119 {
2120 return bool_item;
2121 }
2122
2123 cJSON_Delete(bool_item);
2124 return NULL;
2125}
2126
2127CJSON_PUBLIC(cJSON*) cJSON_AddNumberToObject(cJSON * const object, const char * const name, const double number)
2128{

Callers

nothing calls this directly

Calls 3

cJSON_CreateBoolFunction · 0.85
add_item_to_objectFunction · 0.85
cJSON_DeleteFunction · 0.85

Tested by

no test coverage detected