/opt/xml2/include/libxml2/libxml
NameSizeModeActions
c14n.h31090644editdlrm
catalog.h49050644editdlrm
chvalid.h51590644editdlrm
debugXML.h51520644editdlrm
dict.h18420644editdlrm
DOCBparser.h31570644editdlrm
encoding.h83010644editdlrm
entities.h47120644editdlrm
globals.h146940644editdlrm
hash.h64920644editdlrm
HTMLparser.h93980644editdlrm
HTMLtree.h36460644editdlrm
list.h33660644editdlrm
nanoftp.h37620644editdlrm
nanohttp.h20050644editdlrm
parser.h397190644editdlrm
parserInternals.h173940644editdlrm
pattern.h25860644editdlrm
relaxng.h59960644editdlrm
SAX.h43410644editdlrm
SAX2.h49490644editdlrm
schemasInternals.h260210644editdlrm
schematron.h43710644editdlrm
threads.h18520644editdlrm
tree.h380340644editdlrm
uri.h26640644editdlrm
valid.h136220644editdlrm
xinclude.h29670644editdlrm
xlink.h50400644editdlrm
xmlautomata.h39560644editdlrm
xmlerror.h367840644editdlrm
xmlexports.h39200644editdlrm
xmlIO.h106110644editdlrm
xmlmemory.h59450644editdlrm
xmlmodule.h11700644editdlrm
xmlreader.h126060644editdlrm
xmlregexp.h54580644editdlrm
xmlsave.h23370644editdlrm
xmlschemas.h70690644editdlrm
xmlschemastypes.h48410644editdlrm
xmlstring.h54690644editdlrm
xmlunicode.h99930644editdlrm
xmlversion.h81190644editdlrm
xmlwriter.h212650644editdlrm
xpath.h163980644editdlrm
xpathInternals.h193530644editdlrm
xpointer.h33590644editdlrm
Edit: /opt/xml2/include/libxml2/libxml/dict.h (1842B)
/* * Summary: string dictionnary * Description: dictionary of reusable strings, just used to avoid allocation * and freeing operations. * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_DICT_H__ #define __XML_DICT_H__ #include #include #include #ifdef __cplusplus extern "C" { #endif /* * The dictionnary. */ 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 xmlDictFree (xmlDictPtr dict); /* * Lookup of entry in the dictionnary. */ XMLPUBFUN const xmlChar * XMLCALL xmlDictLookup (xmlDictPtr dict, const xmlChar *name, int len); XMLPUBFUN const xmlChar * XMLCALL xmlDictExists (xmlDictPtr dict, const xmlChar *name, int len); 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 xmlDictSize (xmlDictPtr dict); /* * Cleanup function */ XMLPUBFUN void XMLCALL xmlDictCleanup (void); #ifdef __cplusplus } #endif #endif /* ! __XML_DICT_H__ */