GPT Build StatusDocs

Rust library for reading GPT headers and partition tables on disks and disk images.

```rust extern crate gpt; use gpt::header::{Header, readheader}; use gpt::partition::{Partition, readpartitions};

let filename = "/dev/sda"; let mut h = readheader(&filename).unwrap(); let p = readpartitions(&filename, &mut h); ```