diff options
author | Jonathan Beck | 2009-04-15 22:35:56 +0200 |
---|---|---|
committer | Jonathan Beck | 2009-04-15 22:35:56 +0200 |
commit | 21e389bca01794aeca1e79c92a86fc060549b835 (patch) | |
tree | a116561eb9c682b31e1d560d5b1eb75f28ff6d8e /src/plist.c | |
parent | 2abf518f8e92957df0dd74c06c49a5eb17845865 (diff) | |
download | libplist-21e389bca01794aeca1e79c92a86fc060549b835.tar.gz libplist-21e389bca01794aeca1e79c92a86fc060549b835.tar.bz2 |
Add special accessor for structured types in API.
Diffstat (limited to 'src/plist.c')
-rw-r--r-- | src/plist.c | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index 2a70a09..c3c9e7b 100644 --- a/src/plist.c +++ b/src/plist.c @@ -165,6 +165,34 @@ plist_t plist_get_prev_sibling(plist_t node) return (plist_t) g_node_prev_sibling((GNode *) node); } +plist_t plist_get_array_nth_el(plist_t node, uint32_t n) +{ + plist_t ret = NULL; + if (node && PLIST_ARRAY == plist_get_node_type(node)) { + uint32_t i = 0; + plist_t temp = plist_get_first_child(node); + + while ( i <= n && temp) { + if (i == n) + ret = temp; + temp = plist_get_next_sibling(temp); + i++; + } + } + return ret; +} + +plist_t plist_get_dict_el_from_key(plist_t node, const char *key) +{ + plist_t ret = NULL; + if (node && PLIST_DICT == plist_get_node_type(node)) { + + plist_t key_node = plist_find_node_by_key(node, key); + ret = plist_get_next_sibling(key_node); + } + return ret; +} + static char compare_node_value(plist_type type, plist_data_t data, const void *value, uint64_t length) { char res = FALSE; |