DatPat

Results 2 issues of DatPat

https://github.com/Nukem9/detours/blob/cc5a2e4a58ef462821877b35ad30215f0e16bba1/detours/Detours64.cpp#L264 This should be a 0xC3 otherwise this type of detour should not work.

pub(crate) fn unsigned(i: &str) -> IResult { map_res(alt((tag("0"), digit1)), |s: &str| s.parse::()).parse(i) } parses strings such as 01 02 etc correctly in the sense that it returns the right number,...