Function av_strstart
pub unsafe extern "C" fn av_strstart(
str_: *const i8,
pfx: *const i8,
ptr: *mut *const i8,
) -> i32
Expand description
Return non-zero if pfx is a prefix of str. If it is, *ptr is set to the address of the first character in str after the prefix.
@param str input string @param pfx prefix to test @param ptr updated if the prefix is matched inside str @return non-zero if the prefix matches, zero otherwise