summaryrefslogtreecommitdiffstats
path: root/include/plist
diff options
context:
space:
mode:
Diffstat (limited to 'include/plist')
-rw-r--r--include/plist/plist.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h
index 8ed9063..b46b9a9 100644
--- a/include/plist/plist.h
+++ b/include/plist/plist.h
@@ -400,6 +400,12 @@ extern "C"
400 */ 400 */
401 PLIST_API void plist_array_next_item(plist_t node, plist_array_iter iter, plist_t *item); 401 PLIST_API void plist_array_next_item(plist_t node, plist_array_iter iter, plist_t *item);
402 402
403 /**
404 * Free #PLIST_ARRAY iterator.
405 *
406 * @param iter Iterator to free.
407 */
408 PLIST_API void plist_array_free_iter(plist_array_iter iter);
403 409
404 /******************************************** 410 /********************************************
405 * * 411 * *
@@ -438,6 +444,13 @@ extern "C"
438 PLIST_API void plist_dict_next_item(plist_t node, plist_dict_iter iter, char **key, plist_t *val); 444 PLIST_API void plist_dict_next_item(plist_t node, plist_dict_iter iter, char **key, plist_t *val);
439 445
440 /** 446 /**
447 * Free #PLIST_DICT iterator.
448 *
449 * @param iter Iterator to free.
450 */
451 PLIST_API void plist_dict_free_iter(plist_dict_iter iter);
452
453 /**
441 * Get key associated key to an item. Item must be member of a dictionary. 454 * Get key associated key to an item. Item must be member of a dictionary.
442 * 455 *
443 * @param node the item 456 * @param node the item