lambdaOS 0.1.0

A simple operating system written in Rust
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "uk")]
pub mod uk_std;
#[cfg(feature = "us")]
pub mod us_std;

#[cfg(feature = "uk")]
pub use self::uk_std::map_to_upper;
#[cfg(feature = "us")]
pub use self::us_std::map_to_upper;