(buf: &[u8], pos: &mut usize)
| 5 | use std::env; |
| 6 | |
| 7 | pub fn read_buf(buf: &[u8], pos: &mut usize) -> u8 { |
| 8 | let byte = buf[*pos]; |
| 9 | *pos += 1; |
| 10 | byte |
| 11 | } |
| 12 | |
| 13 | fn finalize_url(path: &str, query: BTreeMap<String, String>) -> String { |
| 14 | #[cfg(feature = "qhash")] |
no outgoing calls
no test coverage detected