fn memchr(haystack: &[u8], from: usize, needle: u8) -> Option<usize>
Find the first byte equal to needle in haystack[from..]. Returns the absolute index, or None.
needle
haystack[from..]
None