MCPcopy Create free account
hub / github.com/Kitware/VTK / xmlRegExecPushString

Function xmlRegExecPushString

ThirdParty/libxml2/vtklibxml2/xmlregexp.c:4002–4006  ·  view source on GitHub ↗

* xmlRegExecPushString: * @exec: a regexp execution context or NULL to indicate the end * @value: a string token input * @data: data associated to the token to reuse in callbacks * * Push one input token in the execution context * * Returns: 1 if the regexp reached a final state, 0 if non-final, and * a negative value in case of error. */

Source from the content-addressed store, hash-verified

4000 * a negative value in case of error.
4001 */
4002int
4003xmlRegExecPushString(xmlRegExecCtxtPtr exec, const xmlChar *value,
4004 void *data) {
4005 return(xmlRegExecPushStringInternal(exec, value, data, 0));
4006}
4007
4008/**
4009 * xmlRegExecPushString2:

Callers 10

xmlValidatePushElementFunction · 0.85
xmlValidatePopElementFunction · 0.85
xmlRegExecPushString2Function · 0.85
automataTestFunction · 0.85

Calls 1

Tested by 1

automataTestFunction · 0.68