summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-07-18 12:08:13 +0200
committerGravatar Jonathan Beck2009-07-18 12:08:13 +0200
commit07c1d3c90512f5fa057e7eff7d307cffe6258111 (patch)
tree8c16ba88eff9614a82c9b3089a4a5515e9004414 /src
parentf605777d9739d2f8873b9ab65929e8aee1ebb64e (diff)
downloadlibplist-07c1d3c90512f5fa057e7eff7d307cffe6258111.tar.gz
libplist-07c1d3c90512f5fa057e7eff7d307cffe6258111.tar.bz2
Add function to get parent node in API and python bindings.
Diffstat (limited to 'src')
-rw-r--r--src/plist.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c
index 8c326af..143418d 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -195,6 +195,11 @@ plist_t plist_get_prev_sibling(plist_t node)
return (plist_t) g_node_prev_sibling((GNode *) node);
}
+plist_t plist_get_parent(plist_t node)
+{
+ return node ? (plist_t) ((GNode *) node)->parent : NULL;
+}
+
plist_t plist_get_array_nth_el(plist_t node, uint32_t n)
{
plist_t ret = NULL;