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