yaged 0.2.0

Yet another gif encoder decoder
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod color_map;
pub mod extension_block;
pub mod image_descriptor;
pub mod raster_data;
pub mod screen_descriptor;
pub mod signature;

fn nth_bit(byte: u8, nth: usize) -> bool {
    byte & (1 << nth) != 0
}