diff options
| author | 2019-05-19 01:22:04 +0200 | |
|---|---|---|
| committer | 2019-05-19 01:22:04 +0200 | |
| commit | 9555e71d9887d0d5caf87341dc47d9ad313bb609 (patch) | |
| tree | f1168779ed3931c57382533426b39e65d0d5869b /src | |
| parent | 23e5a7636bba1565d000adcd4c3debc0788398c5 (diff) | |
| download | libplist-9555e71d9887d0d5caf87341dc47d9ad313bb609.tar.gz libplist-9555e71d9887d0d5caf87341dc47d9ad313bb609.tar.bz2 | |
Add plist_array_item_remove() to allow removing an array's child node without relying on the index
Diffstat (limited to 'src')
| -rw-r--r-- | src/plist.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index 3ffedc4..dd659b8 100644 --- a/src/plist.c +++ b/src/plist.c | |||
| @@ -515,6 +515,21 @@ PLIST_API void plist_array_remove_item(plist_t node, uint32_t n) | |||
| 515 | return; | 515 | return; |
| 516 | } | 516 | } |
| 517 | 517 | ||
| 518 | PLIST_API void plist_array_item_remove(plist_t node) | ||
| 519 | { | ||
| 520 | plist_t father = plist_get_parent(node); | ||
| 521 | if (PLIST_ARRAY == plist_get_node_type(father)) | ||
| 522 | { | ||
| 523 | int n = node_child_position(father, node); | ||
| 524 | if (n < 0) return; | ||
| 525 | ptrarray_t* pa = ((plist_data_t)((node_t*)father)->data)->hashtable; | ||
| 526 | if (pa) { | ||
| 527 | ptr_array_remove(pa, n); | ||
| 528 | } | ||
| 529 | plist_free(node); | ||
| 530 | } | ||
| 531 | } | ||
| 532 | |||
| 518 | PLIST_API void plist_array_new_iter(plist_t node, plist_array_iter *iter) | 533 | PLIST_API void plist_array_new_iter(plist_t node, plist_array_iter *iter) |
| 519 | { | 534 | { |
| 520 | if (iter) | 535 | if (iter) |
