Function xmlRegexpIsDeterministic
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlRegexpIsDeterministic(
compiled: *const XmlRegexp,
) -> c_int
Expand description
Check if a compiled regex is deterministic.
§UPSTREAM-PARITY
int xmlRegexpIsDeterministic(const xmlRegexpPtr compiled);
Returns 1 if deterministic, 0 otherwise.
§SAFETY
compiled must be a valid pointer to an XmlRegexp, or NULL.