lodepng 0.4.2

Reading and writing PNG files without external dependencies. Wrapper for lodepng.
#[repr(C)]
struct Foo {
  bla: u8,
}

impl Foo {
    pub fn new() -> Foo {
        unsafe {
            ::std::mem::zeroed()
        }
    }
}

impl Drop for Foo {
    fn drop(&mut self) {
        println!("Drop!");
    }
}

fn main() {
    Foo::new();
}