Function av_uuid_parse
pub unsafe extern "C" fn av_uuid_parse(
in_: *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. The string must be 37 characters long, including the terminating NUL character.
Example string representation: “2fceebd0-7017-433d-bafb-d073a7116696”
@param[in] in String representation of a UUID, e.g. 2fceebd0-7017-433d-bafb-d073a7116696 @param[out] uu AVUUID @return A non-zero value in case of an error.