diff options
author | Jonathan Beck | 2008-12-01 21:23:58 +0100 |
---|---|---|
committer | Jonathan Beck | 2008-12-01 21:23:58 +0100 |
commit | 7563917755cf58cee80fbd5bc56a1ab0f563963a (patch) | |
tree | b393259faad8a7f6c1e6e89764b0e25ce118765a /src/plist.h | |
parent | 36eff97cba9049ce7ec194cb4f8926c7876368eb (diff) | |
download | libplist-7563917755cf58cee80fbd5bc56a1ab0f563963a.tar.gz libplist-7563917755cf58cee80fbd5bc56a1ab0f563963a.tar.bz2 |
cleanup unused functions.
Diffstat (limited to 'src/plist.h')
-rw-r--r-- | src/plist.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/plist.h b/src/plist.h index 34e3934..ed3d2b2 100644 --- a/src/plist.h +++ b/src/plist.h @@ -22,8 +22,6 @@ #ifndef PLIST_H #define PLIST_H -#include <libxml/parser.h> -#include <libxml/tree.h> #include <stdint.h> #include <wchar.h> @@ -33,16 +31,7 @@ #include <glib.h> char *format_string(const char *buf, int cols, int depth); -xmlNode *add_key_dict_node(xmlDocPtr plist, xmlNode * dict, const char *key, const char *value, int depth); -xmlNode *add_key_str_dict_element(xmlDocPtr plist, xmlNode * dict, const char *key, const char *value, int depth); -xmlNode *add_key_data_dict_element(xmlDocPtr plist, xmlNode * dict, const char *key, const char *value, int depth); -xmlNode *add_child_to_plist(xmlDocPtr plist, const char *name, const char *content, xmlNode * to_node, int depth); -void free_plist(xmlDocPtr plist); -xmlDocPtr new_plist(); - -char **read_dict_element_strings(xmlNode * dict); -void free_dictionary(char **dictionary); /* Binary plist stuff */ @@ -70,7 +59,6 @@ typedef GNode *plist_t; typedef GNode *dict_t; typedef GNode *array_t; - void plist_new_plist(plist_t * plist); void plist_new_dict_in_plist(plist_t plist, dict_t * dict); void plist_new_array_in_plist(plist_t plist, int length, plist_type type, void **values, array_t * array); |