//! Binary (.inkl) writer and reader for [`LocaleData`].
//!
//! The `.inkl` format is a locale overlay that replaces line table content
//! in a linked program at runtime.
//!
//! ## Header layout
//!
//! ```text
//! Offset Size Field
//! ------ ----- ------
//! 0 4 Magic: b"INKL"
//! 4 1 Version: u8 (= 1)
//! 5 4 Base checksum: u32 LE (must match .inkb source_hash)
//! 9 2 Locale tag length: u16 LE
//! 11 N Locale tag: UTF-8 bytes (BCP 47)
//! ```
pub use read_inkl;
pub use write_inkl;
pub const INKL_MAGIC: & = b"INKL";
pub const INKL_VERSION: u8 = 1;