16 lines
182 B
Rust
16 lines
182 B
Rust
use binding::{CChar, CInt};
|
|
|
|
|
|
|
|
pub enum FILE
|
|
{
|
|
}
|
|
|
|
|
|
|
|
extern
|
|
{
|
|
pub fn fileno(stream: *mut FILE) -> CInt;
|
|
pub fn fopen(filename: *const CChar, mode: *const CChar) -> *mut FILE;
|
|
}
|