| 1156 | } |
| 1157 | |
| 1158 | CJSON_PUBLIC(void) |
| 1159 | cJSONUtils_AddPatchToArray(cJSON *const array, const char *const operation, const char *const path, |
| 1160 | const cJSON *const value) |
| 1161 | { |
| 1162 | compose_patch(array, (const unsigned char *)operation, (const unsigned char *)path, NULL, value); |
| 1163 | } |
| 1164 | |
| 1165 | static void create_patches(cJSON *const patches, const unsigned char *const path, cJSON *const from, cJSON *const to, |
| 1166 | const cJSON_bool case_sensitive) |
nothing calls this directly
no test coverage detected