#[unsafe(no_mangle)]pub unsafe extern "C" fn xmlRegexpExec(
compiled: *const XmlRegexp,
value: *const xmlChar,
) -> c_intExpand description
Execute a compiled regex against a string.
§UPSTREAM-PARITY
int xmlRegexpExec(const xmlRegexpPtr compiled, const xmlChar *value);Returns 1 if the value matches, 0 if not, -1 on error.
§SAFETY
compiledmust be a valid pointer to an XmlRegexp, or NULL.valuemust be a valid null-terminated xmlChar string, or NULL.