diff options
author | Jonathan Beck | 2009-10-11 15:49:05 +0200 |
---|---|---|
committer | Jonathan Beck | 2009-10-11 15:49:05 +0200 |
commit | 393f1b4b2825b8cf6e67d22df8c255633696435f (patch) | |
tree | d06639e4c5086d1958f6a4d6d5c1bc2a0d84a61f /include/plist/plist.h | |
parent | 583bb249458fcca6cdf2581896681e618cf4547e (diff) | |
download | libplist-393f1b4b2825b8cf6e67d22df8c255633696435f.tar.gz libplist-393f1b4b2825b8cf6e67d22df8c255633696435f.tar.bz2 |
Restore plist_dict_get_size function.
Diffstat (limited to 'include/plist/plist.h')
-rw-r--r-- | include/plist/plist.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index 55ae9e7..e12d6fa 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -251,6 +251,14 @@ extern "C" { ********************************************/ /** + * Get size of a #PLIST_DICT node. + * + * @param node the node of type #PLIST_DICT + * @return size of the #PLIST_DICT node + */ + PLIST_API uint32_t plist_dict_get_size(plist_t node); + +/** * Create iterator of a #PLIST_DICT node. * The allocated iterator shoult be freed with tandard free function * |