fish-shell/fish-rust/src/compat.rs

26 lines
453 B
Rust
Raw Normal View History

#[allow(non_snake_case)]
pub fn MB_CUR_MAX() -> usize {
unsafe { C_MB_CUR_MAX() }
}
pub fn cur_term() -> bool {
unsafe { has_cur_term() }
}
2023-04-09 20:33:20 +08:00
#[allow(non_snake_case)]
pub fn ST_LOCAL() -> u64 {
unsafe { C_ST_LOCAL() }
}
#[allow(non_snake_case)]
pub fn MNT_LOCAL() -> u64 {
unsafe { C_MNT_LOCAL() }
}
extern "C" {
fn C_MB_CUR_MAX() -> usize;
fn has_cur_term() -> bool;
2023-04-09 20:33:20 +08:00
fn C_ST_LOCAL() -> u64;
fn C_MNT_LOCAL() -> u64;
}