casc_lib/util/mod.rs
1//! Shared utility functions used across the CASC library.
2//!
3//! Provides low-level helpers for binary I/O (endian-aware integer reads) and
4//! hashing (Jenkins hashlittle2 for CASC name hashes).
5
6/// Jenkins hashlittle2 hash function and WoW file path hashing.
7pub mod hash;
8/// Endian-aware byte-slice integer readers.
9pub mod io;