Added very basic file verification

This commit is contained in:
Jamie Hardt
2020-11-22 21:07:16 -08:00
parent a5c55dbcf1
commit bebfa235e6
8 changed files with 836 additions and 802 deletions

View File

@@ -103,7 +103,7 @@ impl<R: Read + Seek> Iterator for Parser<R> {
fn next(&mut self) -> Option<Event> {
let (event, next_state) = self.advance();
println!("{:?}", event);
//println!("{:?}", event);
self.state = next_state;
return event;
}