pub unsafe extern "C" fn xml_strncat(
cur: *mut XmlChar,
add: *const XmlChar,
len: i32,
) -> *mut XmlCharExpand description
a strncat for array of XmlChar’s, it will extend @cur with the len first bytes of @add. Note that if @len < 0 then this is an API error and NULL will be returned.
Returns a new XmlChar *, the original @cur is reallocated and should not be freed.