diff options
| author | 2009-10-11 15:49:05 +0200 | |
|---|---|---|
| committer | 2009-10-11 15:49:05 +0200 | |
| commit | 393f1b4b2825b8cf6e67d22df8c255633696435f (patch) | |
| tree | d06639e4c5086d1958f6a4d6d5c1bc2a0d84a61f /src | |
| parent | 583bb249458fcca6cdf2581896681e618cf4547e (diff) | |
| download | libplist-393f1b4b2825b8cf6e67d22df8c255633696435f.tar.gz libplist-393f1b4b2825b8cf6e67d22df8c255633696435f.tar.bz2 | |
Restore plist_dict_get_size function.
Diffstat (limited to 'src')
| -rw-r--r-- | src/plist.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index df98a7a..98ca34f 100644 --- a/src/plist.c +++ b/src/plist.c | |||
| @@ -267,6 +267,15 @@ void plist_array_remove_item(plist_t node, uint32_t n) | |||
| 267 | return; | 267 | return; |
| 268 | } | 268 | } |
| 269 | 269 | ||
| 270 | uint32_t plist_dict_get_size(plist_t node) | ||
| 271 | { | ||
| 272 | uint32_t ret = 0; | ||
| 273 | if (node && PLIST_DICT == plist_get_node_type(node)) { | ||
| 274 | ret = g_node_n_children(node); | ||
| 275 | } | ||
| 276 | return ret; | ||
| 277 | } | ||
| 278 | |||
| 270 | void plist_dict_new_iter(plist_t node, plist_dict_iter *iter) | 279 | void plist_dict_new_iter(plist_t node, plist_dict_iter *iter) |
| 271 | { | 280 | { |
| 272 | if (iter && *iter == NULL) { | 281 | if (iter && *iter == NULL) { |
