memdump 0.1.0

Handy unsafe no_std memory dumper utility library written in Rust.
Documentation
memdump-0.1.0 has been yanked.

memdump-rs

Handy unsafe memory dumper utility library written in Rust.

Usage example

const FOO: &str = "Hello, world!\n What is your name?";

fn example_func() {
    unsafe {
        ramdump(FOO.as_ptr(), FOO.len(), |s| println!("{}", s));
    }
}