Function xmlStrlen
Source #[unsafe(no_mangle)]
pub unsafe extern "C" fn xmlStrlen(str: *const xmlChar) -> c_int
Expand description
Get the length of an xmlChar string.
§UPSTREAM-PARITY
int xmlStrlen(const xmlChar *str);
§SAFETY
str must be a valid null-terminated string or NULL (returns 0).