daicon_types/
lib.rs

1//! Daicon low-level types, for zero-copy reading and writing.
2//!
3//! This library version is based off the daicon 0.2.0 specification.
4
5mod header;
6mod index;
7
8pub use self::{
9    header::Header,
10    index::{Id, Index},
11};
12
13/// Magic signature of a daicon 0.x.x header, literally equivalent to 0xFF followed by ASCII "dc0".
14pub const SIGNATURE: u32 = 0x306364FF;