diff options
author | Jonathan Beck | 2009-01-12 20:04:40 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-01-12 20:04:40 +0100 |
commit | c0c27eb5dc9c9f77cd5d500f36641647ee508d15 (patch) | |
tree | ab39cbb030c302a89b180655723f2318ad07efd3 /src/plist.c | |
parent | 74dae54b1b092aca744b4df6668569d6fc1153b5 (diff) | |
download | libplist-c0c27eb5dc9c9f77cd5d500f36641647ee508d15.tar.gz libplist-c0c27eb5dc9c9f77cd5d500f36641647ee508d15.tar.bz2 |
Add a function to find a key node by its value.
Diffstat (limited to 'src/plist.c')
-rw-r--r-- | src/plist.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/plist.c b/src/plist.c index adee262..e5cf2db 100644 --- a/src/plist.c +++ b/src/plist.c @@ -194,6 +194,11 @@ plist_t plist_find_node(plist_t plist, plist_type type, void *value, uint64_t le return NULL; } +plist_t plist_find_node_by_key(plist_t plist, char *value) +{ + return plist_find_node(plist, PLIST_KEY, value, strlen(value)); +} + plist_t plist_find_node_by_string(plist_t plist, char *value) { return plist_find_node(plist, PLIST_STRING, value, strlen(value)); |