mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-12-29 14:23:40 +08:00
9 lines
136 B
Rust
9 lines
136 B
Rust
|
#[allow(non_snake_case)]
|
||
|
pub fn MB_CUR_MAX() -> usize {
|
||
|
unsafe { C_MB_CUR_MAX() }
|
||
|
}
|
||
|
|
||
|
extern "C" {
|
||
|
fn C_MB_CUR_MAX() -> usize;
|
||
|
}
|