libc 0.2.33

A library for types and bindings to native C functions often found in libc or other common platform libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
cfg_if! {
    if #[cfg(any(target_arch = "sparc64",
                 target_arch = "x86_64"))] {
        mod b64;
        pub use self::b64::*;
    } else if #[cfg(any(target_arch = "arm",
                        target_arch = "powerpc",
                        target_arch = "x86"))] {
        mod b32;
        pub use self::b32::*;
    } else {
        // Unknown target_arch
    }
}