c-scape 0.22.3

A libc bottom-half implementation in Rust
Documentation
//! C locale support.

#[no_mangle]
unsafe extern "C" fn newlocale() {
    todo!("newlocale")
}
#[no_mangle]
unsafe extern "C" fn freelocale() {
    todo!("freelocale")
}
#[no_mangle]
unsafe extern "C" fn uselocale() {
    todo!("uselocale")
}
#[no_mangle]
unsafe extern "C" fn nl_langinfo() {
    todo!("nl_langinfo")
}
#[no_mangle]
unsafe extern "C" fn strftime_l() {
    todo!("strftime_l")
}
#[no_mangle]
unsafe extern "C" fn strtod_l() {
    todo!("strtod_l")
}
#[no_mangle]
unsafe extern "C" fn strtof_l() {
    todo!("strtof_l")
}
#[no_mangle]
unsafe extern "C" fn strtold_l() {
    todo!("strtold_l")
}
#[no_mangle]
unsafe extern "C" fn strtoll_l() {
    todo!("strtoll_l")
}
#[no_mangle]
unsafe extern "C" fn strtoull_l() {
    todo!("strtoull_l")
}
#[no_mangle]
unsafe extern "C" fn wcsxfrm() {
    todo!("wcsxfrm")
}
#[no_mangle]
unsafe extern "C" fn wcscoll() {
    todo!("wcscoll")
}