summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/plist/plist.h8
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" {
394 */ 394 */
395 PLIST_API plist_t plist_find_node_by_string(plist_t plist, const char *value); 395 PLIST_API plist_t plist_find_node_by_string(plist_t plist, const char *value);
396 396
397/**
398 * Compare two node values
399 *
400 * @param node_l left node to compare
401 * @param node_r rigth node to compare
402 * @return TRUE is type and value match, FALSE otherwise.
403 */
404 PLIST_API char plist_compare_node_value(plist_t node_l, plist_t node_r);
397 405
398/*@}*/ 406/*@}*/
399 407