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

Function cJSONUtils_GeneratePatchesCaseSensitive

cJSON_Utils.c:1296–1309  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1294}
1295
1296CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to)
1297{
1298 cJSON *patches = NULL;
1299
1300 if ((from == NULL) || (to == NULL))
1301 {
1302 return NULL;
1303 }
1304
1305 patches = cJSON_CreateArray();
1306 create_patches(patches, (const unsigned char*)"", from, to, true);
1307
1308 return patches;
1309}
1310
1311CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON * const object)
1312{

Calls 2

cJSON_CreateArrayFunction · 0.85
create_patchesFunction · 0.85

Used in the wild real call sites across dependent graphs

searching dependent graphs…