Add new PLIST_IS_* helper macros for the different plist node types

Instead of e.g.:
    if (plist_get_node_type(plist) == PLIST_STRING)
you can now write:
    if (PLIST_IS_STRING(plist))
1 file changed