Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
libxml2 /
libxml /
Delete
Unzip
Name
Size
Permission
Date
Action
HTMLparser.h
9.77
KB
-rw-r--r--
2024-02-04 13:51
HTMLtree.h
3.42
KB
-rw-r--r--
2023-06-22 10:19
SAX.h
4.31
KB
-rw-r--r--
2023-12-13 14:51
SAX2.h
4.33
KB
-rw-r--r--
2023-12-13 14:51
c14n.h
2.95
KB
-rw-r--r--
2024-02-04 13:51
catalog.h
4.51
KB
-rw-r--r--
2023-06-22 10:19
chvalid.h
4.97
KB
-rw-r--r--
2023-06-22 10:19
debugXML.h
4.81
KB
-rw-r--r--
2023-06-22 10:19
dict.h
1.73
KB
-rw-r--r--
2023-12-13 14:51
encoding.h
7.92
KB
-rw-r--r--
2024-02-04 13:51
entities.h
4.55
KB
-rw-r--r--
2024-02-04 13:51
globals.h
890
B
-rw-r--r--
2023-12-13 14:51
hash.h
6.16
KB
-rw-r--r--
2024-02-04 13:51
list.h
3.07
KB
-rw-r--r--
2024-02-04 13:51
nanoftp.h
3.92
KB
-rw-r--r--
2023-12-13 14:51
nanohttp.h
1.83
KB
-rw-r--r--
2024-02-04 13:51
parser.h
43.37
KB
-rw-r--r--
2024-02-04 13:51
parserInternals.h
16.21
KB
-rw-r--r--
2024-02-04 13:51
pattern.h
2.41
KB
-rw-r--r--
2024-02-04 13:51
relaxng.h
5.69
KB
-rw-r--r--
2023-12-13 14:51
schemasInternals.h
25.62
KB
-rw-r--r--
2023-12-13 14:51
schematron.h
4.16
KB
-rw-r--r--
2023-12-13 14:51
threads.h
1.69
KB
-rw-r--r--
2023-12-13 14:51
tree.h
38.35
KB
-rw-r--r--
2026-01-26 00:00
uri.h
2.51
KB
-rw-r--r--
2024-02-04 13:51
valid.h
12.53
KB
-rw-r--r--
2024-02-04 13:51
xinclude.h
2.82
KB
-rw-r--r--
2024-02-04 13:51
xlink.h
4.88
KB
-rw-r--r--
2023-06-22 10:19
xmlIO.h
11.97
KB
-rw-r--r--
2024-02-04 13:51
xmlautomata.h
3.7
KB
-rw-r--r--
2023-06-22 10:19
xmlerror.h
36.42
KB
-rw-r--r--
2024-02-04 13:51
xmlexports.h
992
B
-rw-r--r--
2024-02-04 13:51
xmlmemory.h
5.97
KB
-rw-r--r--
2023-12-13 14:51
xmlmodule.h
1.11
KB
-rw-r--r--
2023-06-22 10:19
xmlreader.h
11.83
KB
-rw-r--r--
2024-02-04 13:51
xmlregexp.h
5.03
KB
-rw-r--r--
2023-12-13 14:51
xmlsave.h
2.41
KB
-rw-r--r--
2024-02-04 13:51
xmlschemas.h
6.74
KB
-rw-r--r--
2023-12-13 14:51
xmlschemastypes.h
4.48
KB
-rw-r--r--
2023-06-22 10:19
xmlstring.h
5.15
KB
-rw-r--r--
2023-06-22 10:19
xmlunicode.h
8.46
KB
-rw-r--r--
2023-06-22 10:19
xmlversion.h
8.99
KB
-rw-r--r--
2026-01-26 00:00
xmlwriter.h
20.14
KB
-rw-r--r--
2024-02-04 13:51
xpath.h
16.06
KB
-rw-r--r--
2024-02-04 13:51
xpathInternals.h
17.99
KB
-rw-r--r--
2023-12-13 14:51
xpointer.h
3.56
KB
-rw-r--r--
2023-12-13 14:51
Save
Rename
/* * Summary: pattern expression handling * Description: allows to compile and test pattern expressions for nodes * either in a tree or based on a parser state. * * Copy: See Copyright for the status of this software. * * Author: Daniel Veillard */ #ifndef __XML_PATTERN_H__ #define __XML_PATTERN_H__ #include <libxml/xmlversion.h> #include <libxml/tree.h> #include <libxml/dict.h> #ifdef LIBXML_PATTERN_ENABLED #ifdef __cplusplus extern "C" { #endif /** * xmlPattern: * * A compiled (XPath based) pattern to select nodes */ typedef struct _xmlPattern xmlPattern; typedef xmlPattern *xmlPatternPtr; /** * xmlPatternFlags: * * This is the set of options affecting the behaviour of pattern * matching with this module * */ typedef enum { XML_PATTERN_DEFAULT = 0, /* simple pattern match */ XML_PATTERN_XPATH = 1<<0, /* standard XPath pattern */ XML_PATTERN_XSSEL = 1<<1, /* XPath subset for schema selector */ XML_PATTERN_XSFIELD = 1<<2 /* XPath subset for schema field */ } xmlPatternFlags; XMLPUBFUN void xmlFreePattern (xmlPatternPtr comp); XMLPUBFUN void xmlFreePatternList (xmlPatternPtr comp); XMLPUBFUN xmlPatternPtr xmlPatterncompile (const xmlChar *pattern, xmlDict *dict, int flags, const xmlChar **namespaces); XMLPUBFUN int xmlPatternMatch (xmlPatternPtr comp, xmlNodePtr node); /* streaming interfaces */ typedef struct _xmlStreamCtxt xmlStreamCtxt; typedef xmlStreamCtxt *xmlStreamCtxtPtr; XMLPUBFUN int xmlPatternStreamable (xmlPatternPtr comp); XMLPUBFUN int xmlPatternMaxDepth (xmlPatternPtr comp); XMLPUBFUN int xmlPatternMinDepth (xmlPatternPtr comp); XMLPUBFUN int xmlPatternFromRoot (xmlPatternPtr comp); XMLPUBFUN xmlStreamCtxtPtr xmlPatternGetStreamCtxt (xmlPatternPtr comp); XMLPUBFUN void xmlFreeStreamCtxt (xmlStreamCtxtPtr stream); XMLPUBFUN int xmlStreamPushNode (xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns, int nodeType); XMLPUBFUN int xmlStreamPush (xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns); XMLPUBFUN int xmlStreamPushAttr (xmlStreamCtxtPtr stream, const xmlChar *name, const xmlChar *ns); XMLPUBFUN int xmlStreamPop (xmlStreamCtxtPtr stream); XMLPUBFUN int xmlStreamWantsAnyNode (xmlStreamCtxtPtr stream); #ifdef __cplusplus } #endif #endif /* LIBXML_PATTERN_ENABLED */ #endif /* __XML_PATTERN_H__ */