diff options
author | Jonathan Beck | 2009-01-04 12:31:41 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-01-04 12:31:41 +0100 |
commit | ca40090460a6e43112c1f9e9d414727c29a9847d (patch) | |
tree | a439dad5ab5ee03d604ae363adec77ae9f979d59 /src/plist.h | |
parent | 135e43c1767c6d1cc4cad057130bf371a548f648 (diff) | |
download | libplist-ca40090460a6e43112c1f9e9d414727c29a9847d.tar.gz libplist-ca40090460a6e43112c1f9e9d414727c29a9847d.tar.bz2 |
Setup warning flags and fixes missing static attribute for local funtions.
Diffstat (limited to 'src/plist.h')
-rw-r--r-- | src/plist.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plist.h b/src/plist.h index b7c74d9..3f4036f 100644 --- a/src/plist.h +++ b/src/plist.h @@ -55,6 +55,8 @@ plist_t plist_new_node(plist_data_t data); plist_data_t plist_get_data(const plist_t node); plist_data_t plist_new_plist_data(); void plist_free_plist_data(plist_data_t node); +plist_type plist_get_node_type(plist_t node); +uint64_t plist_get_node_uint_val(plist_t node); #endif |