c-scape 0.22.3

A libc bottom-half implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Posix message catalog API. Not widely used.

#[no_mangle]
unsafe extern "C" fn catclose() {
    todo!("catclose")
}
#[no_mangle]
unsafe extern "C" fn catgets() {
    todo!("catgets")
}
#[no_mangle]
unsafe extern "C" fn catopen() {
    todo!("catopen")
}