13 lines
263 B
Rust
13 lines
263 B
Rust
|
//! Handle defining the external functions from what ever C library is
|
||
|
//! being linked against. These will use the C99 definitions so that
|
||
|
//! this library is as up-to-date as it can be.
|
||
|
|
||
|
|
||
|
mod string;
|
||
|
mod time;
|
||
|
|
||
|
|
||
|
|
||
|
pub use self::string::*;
|
||
|
pub use self::time::*;
|