Function av_uuid_parse_range
pub unsafe extern "C" fn av_uuid_parse_range(
in_start: *const i8,
in_end: *const i8,
uu: *mut u8,
) -> i32
Expand description
Parses a string representation of a UUID formatted according to IETF RFC 4122 into an AVUUID. The parsing is case-insensitive.
@param[in] in_start Pointer to the first character of the string representation
@param[in] in_end Pointer to the character after the last character of the
string representation. That memory location is never
accessed. It is an error if in_end - in_start != 36
.
@param[out] uu AVUUID
@return A non-zero value in case of an error.