1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#[cfg(not(feature = "no_std"))]
mod inner {
    pub use std::{
        boxed::Box,
        ffi::CString,
        os::raw::*,
        string::{String, ToString},
        vec,
        vec::Vec,
    };

    pub fn cosf(a: f32) -> f32 {
        a.cos()
    }
    pub fn sinf(a: f32) -> f32 {
        a.sin()
    }
    pub fn floorf(a: f32) -> f32 {
        a.floor()
    }
    pub fn sqrtf(a: f32) -> f32 {
        a.sqrt()
    }
}

#[cfg(feature = "no_std")]
mod inner {
    pub use alloc::{
        boxed::Box,
        string::{String, ToString},
        vec,
        vec::Vec,
    };

    pub use cstr_core::CString;
    pub use libc::*;
    pub use libm::*;
}

pub use inner::*;