(buf: &[u8; 4])
| 204 | } |
| 205 | |
| 206 | fn hex_buf_to_str(buf: &[u8; 4]) -> String { |
| 207 | std::str::from_utf8(buf).unwrap().to_string() |
| 208 | } |
| 209 | |
| 210 | fn parse_hex_char<'a, T: CharProvider<'a>>(chars: &mut T) -> Result<char, ParseStringErrorKind> { |
| 211 | let mut buf1 = [0u8; 4]; |
no outgoing calls
no test coverage detected
searching dependent graphs…