summaryrefslogtreecommitdiffstats
path: root/gnulib-local/lib/libxml/dict.in.h
diff options
context:
space:
mode:
authorDaiki Ueno <ueno@gnu.org>2015-12-14 12:02:32 +0900
committerDaiki Ueno <ueno@gnu.org>2015-12-14 12:32:33 +0900
commita2e0a31298a4c29f770965e15593f5fef89dcde9 (patch)
tree0ca346f01db56b7ff691ada32b387a605d269db2 /gnulib-local/lib/libxml/dict.in.h
parent6e6f6ee91f04bebcf295df9ee11c4e8422ef7b4c (diff)
downloadexternal_gettext-a2e0a31298a4c29f770965e15593f5fef89dcde9.zip
external_gettext-a2e0a31298a4c29f770965e15593f5fef89dcde9.tar.gz
external_gettext-a2e0a31298a4c29f770965e15593f5fef89dcde9.tar.bz2
gnulib-local: Update included libxml2 to 2.9.3
* gnulib-local/lib/libxml/*: Update from libxml2 2.9.3. Add buf.[ch], enc.h, save.h, triodef.h, trionan.[ch]. Enable XPath and XPointer support. * gnulib-local/modules/libxml (Files): Add new files from libxml2 2.9.3.
Diffstat (limited to 'gnulib-local/lib/libxml/dict.in.h')
-rw-r--r--gnulib-local/lib/libxml/dict.in.h21
1 files changed, 16 insertions, 5 deletions
diff --git a/gnulib-local/lib/libxml/dict.in.h b/gnulib-local/lib/libxml/dict.in.h
index abb8339..7022ec8 100644
--- a/gnulib-local/lib/libxml/dict.in.h
+++ b/gnulib-local/lib/libxml/dict.in.h
@@ -11,6 +11,7 @@
#ifndef __XML_DICT_H__
#define __XML_DICT_H__
+#include <limits.h>
#include <libxml/xmlversion.h>
#include <libxml/tree.h>
@@ -25,36 +26,46 @@ typedef struct _xmlDict xmlDict;
typedef xmlDict *xmlDictPtr;
/*
+ * Initializer
+ */
+XMLPUBFUN int XMLCALL xmlInitializeDict(void);
+
+/*
* Constructor and destructor.
*/
XMLPUBFUN xmlDictPtr XMLCALL
xmlDictCreate (void);
+XMLPUBFUN size_t XMLCALL
+ xmlDictSetLimit (xmlDictPtr dict,
+ size_t limit);
+XMLPUBFUN size_t XMLCALL
+ xmlDictGetUsage (xmlDictPtr dict);
XMLPUBFUN xmlDictPtr XMLCALL
xmlDictCreateSub(xmlDictPtr sub);
XMLPUBFUN int XMLCALL
xmlDictReference(xmlDictPtr dict);
-XMLPUBFUN void XMLCALL
+XMLPUBFUN void XMLCALL
xmlDictFree (xmlDictPtr dict);
/*
* Lookup of entry in the dictionnary.
*/
-XMLPUBFUN const xmlChar * XMLCALL
+XMLPUBFUN const xmlChar * XMLCALL
xmlDictLookup (xmlDictPtr dict,
const xmlChar *name,
int len);
-XMLPUBFUN const xmlChar * XMLCALL
+XMLPUBFUN const xmlChar * XMLCALL
xmlDictExists (xmlDictPtr dict,
const xmlChar *name,
int len);
-XMLPUBFUN const xmlChar * XMLCALL
+XMLPUBFUN const xmlChar * XMLCALL
xmlDictQLookup (xmlDictPtr dict,
const xmlChar *prefix,
const xmlChar *name);
XMLPUBFUN int XMLCALL
xmlDictOwns (xmlDictPtr dict,
const xmlChar *str);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
xmlDictSize (xmlDictPtr dict);
/*