dos-date-time 0.3.0

An MS-DOS date and time library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: 2025 Shun Sakai
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

//! Error types for this crate.

mod dos_date;
mod dos_date_time;

pub use self::{
    dos_date::{DateRangeError, DateRangeErrorKind},
    dos_date_time::{DateTimeRangeError, DateTimeRangeErrorKind},
};