This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/members/libpt-hedu/src/lib.rs
Christoph J. Scherr 3f59e99b88
All checks were successful
Cargo Check, Format, Fix and Test / cargo CI (push) Successful in 2m20s
early hedu
2024-01-16 11:31:05 +01:00

24 lines
553 B
Rust

//! # Dump data
//!
//! This crate is part of [`pt`](../libpt/index.html), but can also be used as a standalone
//! module.
//!
//! This crate is currently empty.
use std::{fmt::Debug, io::{BufReader, BufRead, prelude::*, Bytes}};
use anyhow::Result;
pub fn dump<T>(mut data: BufReader<T>) -> Result<()>
where T: Read
{
for (i, b) in data.bytes().enumerate() {
if i % 8 == 0 {
print!("{:08X}\t", i);
}
print!("{:02X?} ", b.unwrap());
if i % 8 == 7 {
println!();
}
}
Ok(())
}