diff --git a/src/c/stdio.rs b/src/c/stdio.rs new file mode 100644 index 0000000..0d12472 --- /dev/null +++ b/src/c/stdio.rs @@ -0,0 +1,15 @@ +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; +}