//! Legacy Excel (.xls) file format reader
//!
//! This module provides functionality to parse Microsoft Excel files
//! in the legacy binary format (.xls files), which are OLE2-based files.
//! The implementation is based on the BIFF (Binary Interchange File Format)
//! specification and draws inspiration from xlrd and calamine libraries.
/// Error types for XLS parsing
/// BIFF record parsing utilities
/// Workbook parsing implementation
/// Worksheet parsing implementation
/// Cell value parsing and representation
/// Shared parsing utilities
pub use ;
pub use XlsWorkbook;
pub use XlsWorksheet;
pub use XlsCell;