Returns the first occurrence of a byte in a byte slice if any.
fn memchr(s: &[u8], c: u8) -> Option<usize>
The slice to be searched.
The byte to be searched for.
Returns the first occurrence of the byte in the slice.