diff options
author | Jonathan Beck | 2009-02-15 17:15:29 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-02-15 17:15:29 +0100 |
commit | bb3097cb2266b55719b955c93d09a0e2d6f8eccb (patch) | |
tree | 478a6dd7b31b1640d79bc645052fc9843cc74ca1 /include/plist | |
parent | 8e9eb83c2a8cd3b6a6d1943043f1d3b674e82de4 (diff) | |
download | libplist-bb3097cb2266b55719b955c93d09a0e2d6f8eccb.tar.gz libplist-bb3097cb2266b55719b955c93d09a0e2d6f8eccb.tar.bz2 |
Add more regression test and fix Integer and Real type handling.
Diffstat (limited to 'include/plist')
-rw-r--r-- | include/plist/plist.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/plist/plist.h b/include/plist/plist.h index df30ac4..4547f18 100644 --- a/include/plist/plist.h +++ b/include/plist/plist.h @@ -394,6 +394,14 @@ extern "C" { */ PLIST_API plist_t plist_find_node_by_string(plist_t plist, const char *value); +/** + * Compare two node values + * + * @param node_l left node to compare + * @param node_r rigth node to compare + * @return TRUE is type and value match, FALSE otherwise. + */ + PLIST_API char plist_compare_node_value(plist_t node_l, plist_t node_r); /*@}*/ |