diff options
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) |
