| 1294 | } |
| 1295 | |
| 1296 | CJSON_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 | |
| 1311 | CJSON_PUBLIC(void) cJSONUtils_SortObject(cJSON * const object) |
| 1312 | { |
searching dependent graphs…