diff options
author | Jonathan Beck | 2008-12-13 17:06:06 +0100 |
---|---|---|
committer | Jonathan Beck | 2008-12-13 17:06:06 +0100 |
commit | 3f0dfcf5f77659877f57c00f307ed46a96d0d0d1 (patch) | |
tree | 7e6eff5dc890087e1a906addcc018fbfba61ae6d /include/plist/plist.h | |
parent | c39685d3a87858e7ad8ada0da2798aaf670969b4 (diff) | |
download | libplist-3f0dfcf5f77659877f57c00f307ed46a96d0d0d1.tar.gz libplist-3f0dfcf5f77659877f57c00f307ed46a96d0d0d1.tar.bz2 |
complete find function to take length into account.
Diffstat (limited to 'include/plist/plist.h')
-rw-r--r-- | include/plist/plist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index 4469f06..b6335f5 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -60,7 +60,7 @@ plist_t plist_get_first_child(plist_t node); plist_t plist_get_next_sibling(plist_t node); plist_t plist_get_prev_sibling(plist_t node); -plist_t plist_find_node(plist_t plist, plist_type type, void *value); +plist_t plist_find_node(plist_t plist, plist_type type, void *value, uint64_t length); void plist_get_type_and_value(plist_t node, plist_type * type, void *value, uint64_t * length); //import and export functions |