|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __XML_REGEXP_H__ |
|
|
#define __XML_REGEXP_H__ |
|
|
|
|
|
#include <stdio.h> |
|
|
#include <libxml/xmlversion.h> |
|
|
#include <libxml/xmlstring.h> |
|
|
|
|
|
#ifdef LIBXML_REGEXP_ENABLED |
|
|
|
|
|
#ifdef __cplusplus |
|
|
extern "C" { |
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _xmlRegexp xmlRegexp; |
|
|
typedef xmlRegexp *xmlRegexpPtr; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _xmlRegExecCtxt xmlRegExecCtxt; |
|
|
typedef xmlRegExecCtxt *xmlRegExecCtxtPtr; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
XMLPUBFUN xmlRegexpPtr |
|
|
xmlRegexpCompile (const xmlChar *regexp); |
|
|
XMLPUBFUN void xmlRegFreeRegexp(xmlRegexpPtr regexp); |
|
|
XMLPUBFUN int |
|
|
xmlRegexpExec (xmlRegexpPtr comp, |
|
|
const xmlChar *value); |
|
|
XMLPUBFUN void |
|
|
xmlRegexpPrint (FILE *output, |
|
|
xmlRegexpPtr regexp); |
|
|
XMLPUBFUN int |
|
|
xmlRegexpIsDeterminist(xmlRegexpPtr comp); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef void (*xmlRegExecCallbacks) (xmlRegExecCtxtPtr exec, |
|
|
const xmlChar *token, |
|
|
void *transdata, |
|
|
void *inputdata); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN xmlRegExecCtxtPtr |
|
|
xmlRegNewExecCtxt (xmlRegexpPtr comp, |
|
|
xmlRegExecCallbacks callback, |
|
|
void *data); |
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN void |
|
|
xmlRegFreeExecCtxt (xmlRegExecCtxtPtr exec); |
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN int |
|
|
xmlRegExecPushString(xmlRegExecCtxtPtr exec, |
|
|
const xmlChar *value, |
|
|
void *data); |
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN int |
|
|
xmlRegExecPushString2(xmlRegExecCtxtPtr exec, |
|
|
const xmlChar *value, |
|
|
const xmlChar *value2, |
|
|
void *data); |
|
|
|
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN int |
|
|
xmlRegExecNextValues(xmlRegExecCtxtPtr exec, |
|
|
int *nbval, |
|
|
int *nbneg, |
|
|
xmlChar **values, |
|
|
int *terminal); |
|
|
XML_DEPRECATED |
|
|
XMLPUBFUN int |
|
|
xmlRegExecErrInfo (xmlRegExecCtxtPtr exec, |
|
|
const xmlChar **string, |
|
|
int *nbval, |
|
|
int *nbneg, |
|
|
xmlChar **values, |
|
|
int *terminal); |
|
|
|
|
|
#ifdef __cplusplus |
|
|
} |
|
|
#endif |
|
|
|
|
|
#endif |
|
|
|
|
|
#endif |
|
|
|