[go: up one dir, main page]

lexical-core 0.5.0

Lexical, to- and from-string conversion routines.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Foreign-function interface declarations.
//!
//! Re-imports FFI declarations nested in other modules for documentation
//! purposes.

// Re-export the config constants, mutable globals, and functions.
pub use config_ffi::*;

// Re-export the result and error declarations.
pub use error_ffi::*;
pub use result_ffi::*;

// Re-export the low-level parsers and formatters.
pub use atof_ffi::*;
pub use atoi_ffi::*;
pub use ftoa_ffi::*;
pub use itoa_ffi::*;