ps2mc 0.1.0

A Rust library for reading, extracting, and rewriting PlayStation 2 memory card images.
Documentation
//! Read, extract, and rewrite PlayStation 2 memory card images.
//!
//! # Examples
//!
//! ```no_run
//! use ps2mc::MemoryCard;
//!
//! let mut card = MemoryCard::open("memcard.ps2")?;
//! for entry in card.entries() {
//!     println!("{}", entry.decode_name());
//! }
//! # Ok::<(), ps2mc::Ps2mcError>(())
//! ```

mod card;
mod ecc;
mod entry;
mod error;
mod icon;
mod icon_sys;
mod page;
mod super_block;

pub use card::{MemoryCard, SaveIconSet};
pub use entry::{Entry, Ps2Time};
pub use error::Ps2mcError;
pub use icon::{Icon, NormalDir, TexUV, Vertex, VertexColor, VertexCoord};
pub use icon_sys::IconSys;