#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlRegExecPushString(
ctxt: *mut RegExecCtxt,
value: *const xmlChar,
_data: *mut c_void,
) -> c_intExpand description
Push a string into the incremental regex execution context.
§UPSTREAM-PARITY
int xmlRegExecPushString(xmlRegExecCtxtPtr ctxt, const xmlChar *value,
void *data);Returns 1 if the pushed data completes a match, 0 if more data is needed, -1 on error.
§SAFETY
ctxtmust be a valid pointer to a RegExecCtxt, or NULL.valuemust be a valid null-terminated xmlChar string, or NULL.datais the per-push token data passed to the progress callback (retained for ABI parity; not invoked, R-000176).