/
opt
/
cpanel
/
ea-libxml2
/
include
/
libxml2
/
libxml
/
/opt/cpanel/ea-libxml2/include/libxml2/libxml
mkdir
upload
Name
Size
Mode
Actions
c14n.h
2677
0644
edit
dl
rm
catalog.h
5075
0644
edit
dl
rm
chvalid.h
4821
0644
edit
dl
rm
debugXML.h
1655
0644
edit
dl
rm
dict.h
1780
0644
edit
dl
rm
encoding.h
9863
0644
edit
dl
rm
entities.h
4379
0644
edit
dl
rm
globals.h
591
0644
edit
dl
rm
hash.h
6962
0644
edit
dl
rm
HTMLparser.h
10612
0644
edit
dl
rm
HTMLtree.h
2700
0644
edit
dl
rm
list.h
3140
0644
edit
dl
rm
nanoftp.h
323
0644
edit
dl
rm
nanohttp.h
2144
0644
edit
dl
rm
parser.h
60306
0644
edit
dl
rm
parserInternals.h
13849
0644
edit
dl
rm
pattern.h
2603
0644
edit
dl
rm
relaxng.h
6150
0644
edit
dl
rm
SAX.h
395
0644
edit
dl
rm
SAX2.h
4235
0644
edit
dl
rm
schemasInternals.h
23260
0644
edit
dl
rm
schematron.h
4259
0644
edit
dl
rm
threads.h
1568
0644
edit
dl
rm
tree.h
40243
0644
edit
dl
rm
uri.h
2727
0644
edit
dl
rm
valid.h
11888
0644
edit
dl
rm
xinclude.h
2875
0644
edit
dl
rm
xlink.h
5156
0644
edit
dl
rm
xmlautomata.h
3889
0644
edit
dl
rm
xmlerror.h
39335
0644
edit
dl
rm
xmlexports.h
2414
0644
edit
dl
rm
xmlIO.h
11594
0644
edit
dl
rm
xmlmemory.h
5050
0644
edit
dl
rm
xmlmodule.h
1158
0644
edit
dl
rm
xmlreader.h
12531
0644
edit
dl
rm
xmlregexp.h
2453
0644
edit
dl
rm
xmlsave.h
3476
0644
edit
dl
rm
xmlschemas.h
6930
0644
edit
dl
rm
xmlschemastypes.h
4542
0644
edit
dl
rm
xmlstring.h
5248
0644
edit
dl
rm
xmlunicode.h
281
0644
edit
dl
rm
xmlversion.h
3994
0644
edit
dl
rm
xmlwriter.h
20472
0644
edit
dl
rm
xpath.h
14756
0644
edit
dl
rm
xpathInternals.h
17776
0644
edit
dl
rm
xpointer.h
930
0644
edit
dl
rm
Edit:
/opt/cpanel/ea-libxml2/include/libxml2/libxml/xmlstring.h
(5248B)
/** * @file * * @brief set of routines to process strings * * type and interfaces needed for the internal string handling * of the library, especially UTF8 processing. * * @copyright See Copyright for the status of this software. * * @author Daniel Veillard */ #ifndef __XML_STRING_H__ #define __XML_STRING_H__ #include <stdarg.h> #include <libxml/xmlversion.h> #ifdef __cplusplus extern "C" { #endif /** * This is a basic byte in an UTF-8 encoded string. * It's unsigned allowing to pinpoint case where char * are assigned * to xmlChar * (possibly making serialization back impossible). */ typedef unsigned char xmlChar; /** * Macro to cast a string to an xmlChar * when one know its safe. */ #define BAD_CAST (xmlChar *) /* * xmlChar handling */ XMLPUBFUN xmlChar * xmlStrdup (const xmlChar *cur); XMLPUBFUN xmlChar * xmlStrndup (const xmlChar *cur, int len); XMLPUBFUN xmlChar * xmlCharStrndup (const char *cur, int len); XMLPUBFUN xmlChar * xmlCharStrdup (const char *cur); XMLPUBFUN xmlChar * xmlStrsub (const xmlChar *str, int start, int len); XMLPUBFUN const xmlChar * xmlStrchr (const xmlChar *str, xmlChar val); XMLPUBFUN const xmlChar * xmlStrstr (const xmlChar *str, const xmlChar *val); XMLPUBFUN const xmlChar * xmlStrcasestr (const xmlChar *str, const xmlChar *val); XMLPUBFUN int xmlStrcmp (const xmlChar *str1, const xmlChar *str2); XMLPUBFUN int xmlStrncmp (const xmlChar *str1, const xmlChar *str2, int len); XMLPUBFUN int xmlStrcasecmp (const xmlChar *str1, const xmlChar *str2); XMLPUBFUN int xmlStrncasecmp (const xmlChar *str1, const xmlChar *str2, int len); XMLPUBFUN int xmlStrEqual (const xmlChar *str1, const xmlChar *str2); XMLPUBFUN int xmlStrQEqual (const xmlChar *pref, const xmlChar *name, const xmlChar *str); XMLPUBFUN int xmlStrlen (const xmlChar *str); XMLPUBFUN xmlChar * xmlStrcat (xmlChar *cur, const xmlChar *add); XMLPUBFUN xmlChar * xmlStrncat (xmlChar *cur, const xmlChar *add, int len); XMLPUBFUN xmlChar * xmlStrncatNew (const xmlChar *str1, const xmlChar *str2, int len); XMLPUBFUN int xmlStrPrintf (xmlChar *buf, int len, const char *msg, ...) LIBXML_ATTR_FORMAT(3,4); XMLPUBFUN int xmlStrVPrintf (xmlChar *buf, int len, const char *msg, va_list ap) LIBXML_ATTR_FORMAT(3,0); XMLPUBFUN int xmlGetUTF8Char (const unsigned char *utf, int *len); XMLPUBFUN int xmlCheckUTF8 (const unsigned char *utf); XMLPUBFUN int xmlUTF8Strsize (const xmlChar *utf, int len); XMLPUBFUN xmlChar * xmlUTF8Strndup (const xmlChar *utf, int len); XMLPUBFUN const xmlChar * xmlUTF8Strpos (const xmlChar *utf, int pos); XMLPUBFUN int xmlUTF8Strloc (const xmlChar *utf, const xmlChar *utfchar); XMLPUBFUN xmlChar * xmlUTF8Strsub (const xmlChar *utf, int start, int len); XMLPUBFUN int xmlUTF8Strlen (const xmlChar *utf); XMLPUBFUN int xmlUTF8Size (const xmlChar *utf); XMLPUBFUN int xmlUTF8Charcmp (const xmlChar *utf1, const xmlChar *utf2); #ifdef __cplusplus } #endif #endif /* __XML_STRING_H__ */
Save
cmd:
run