Expand description
Library to decode ea .big files
use std::fs::File;
use std::io;
fn main() -> io::Result<()> {
let file = File::open("./example.big");
let (header, entries) = ea_big::from_reader(&file)?;
let embed = ea_big::open_file(&file, &entries[0]);
Ok(())
}Structs§
- Embedded
File - Helper struct to read a file embedded in the big file
- Header
- Header of the BIG file
- Table
Entry - A entry in the table of indices
Functions§
- from_
reader - Decodes the header and the indices table from a
Reader - open_
file - Returns a
EmbeddedFilerepresenting theTableEntry