(input: &[u8])
| 28 | } |
| 29 | |
| 30 | fn wait_parser(input: &[u8]) -> IResult<&[u8], (Cmd<'_>, usize)> { |
| 31 | eof(input).map(|(a, _)| (a, (Cmd::Wait, 0))) |
| 32 | } |
| 33 | |
| 34 | fn line_parser(input: &[u8]) -> IResult<&[u8], (&[u8], usize)> { |
| 35 | let (rem, ln) = take_until("\r\n")(input)?; |
nothing calls this directly
no outgoing calls
no test coverage detected