PATH:
opt
/
cpanel
/
ea-libxml2
/
include
/
libxml2
/
libxml
/** * @file * * @brief string dictionary * * dictionary of reusable strings, just used to avoid allocation * and freeing operations. * * @copyright See Copyright for the status of this software. * * @author Daniel Veillard */ #ifndef __XML_DICT_H__ #define __XML_DICT_H__ #include <stddef.h> #include <libxml/xmlversion.h> #include <libxml/xmlstring.h> #ifdef __cplusplus extern "C" { #endif /** * Dictionary (pool for interned strings) */ typedef struct _xmlDict xmlDict; typedef xmlDict *xmlDictPtr; /* * Initializer */ XML_DEPRECATED XMLPUBFUN int xmlInitializeDict(void); /* * Constructor and destructor. */ XMLPUBFUN xmlDict * xmlDictCreate (void); XMLPUBFUN size_t xmlDictSetLimit (xmlDict *dict, size_t limit); XMLPUBFUN size_t xmlDictGetUsage (xmlDict *dict); XMLPUBFUN xmlDict * xmlDictCreateSub(xmlDict *sub); XMLPUBFUN int xmlDictReference(xmlDict *dict); XMLPUBFUN void xmlDictFree (xmlDict *dict); /* * Lookup of entry in the dictionary. */ XMLPUBFUN const xmlChar * xmlDictLookup (xmlDict *dict, const xmlChar *name, int len); XMLPUBFUN const xmlChar * xmlDictExists (xmlDict *dict, const xmlChar *name, int len); XMLPUBFUN const xmlChar * xmlDictQLookup (xmlDict *dict, const xmlChar *prefix, const xmlChar *name); XMLPUBFUN int xmlDictOwns (xmlDict *dict, const xmlChar *str); XMLPUBFUN int xmlDictSize (xmlDict *dict); /* * Cleanup function */ XML_DEPRECATED XMLPUBFUN void xmlDictCleanup (void); #ifdef __cplusplus } #endif #endif /* ! __XML_DICT_H__ */
[-] xpathInternals.h
[edit]
[-] xpath.h
[edit]
[-] xmlmodule.h
[edit]
[-] dict.h
[edit]
[-] nanoftp.h
[edit]
[-] xmlautomata.h
[edit]
[-] xmlschemas.h
[edit]
[-] xmlwriter.h
[edit]
[-] xmlreader.h
[edit]
[-] nanohttp.h
[edit]
[-] xmlstring.h
[edit]
[+]
..
[-] xmlsave.h
[edit]
[-] chvalid.h
[edit]
[-] xpointer.h
[edit]
[-] xlink.h
[edit]
[-] parser.h
[edit]
[-] tree.h
[edit]
[-] schematron.h
[edit]
[-] SAX.h
[edit]
[-] threads.h
[edit]
[-] parserInternals.h
[edit]
[-] xmlexports.h
[edit]
[-] c14n.h
[edit]
[-] hash.h
[edit]
[-] pattern.h
[edit]
[-] xmlerror.h
[edit]
[-] catalog.h
[edit]
[-] HTMLparser.h
[edit]
[-] xmlunicode.h
[edit]
[-] xmlregexp.h
[edit]
[-] globals.h
[edit]
[-] xmlversion.h
[edit]
[-] xinclude.h
[edit]
[-] debugXML.h
[edit]
[-] xmlIO.h
[edit]
[-] entities.h
[edit]
[-] uri.h
[edit]
[-] relaxng.h
[edit]
[-] valid.h
[edit]
[-] HTMLtree.h
[edit]
[-] schemasInternals.h
[edit]
[-] xmlmemory.h
[edit]
[-] SAX2.h
[edit]
[-] xmlschemastypes.h
[edit]
[-] list.h
[edit]
[-] encoding.h
[edit]