9 unstable releases (3 breaking)

0.5.1 Nov 7, 2019
0.5.0 May 31, 2019
0.4.0 Apr 22, 2019
0.2.3 May 31, 2016
0.1.0 Apr 29, 2016

#244 in Windows APIs


Used in 2 crates

MIT license

39KB
813 lines

rust-cfile docs travis Build status dependency status

Rust bindings to C *FILE stream

Examples

use std::io::prelude::*;
use std::io::{BufReader, SeekFrom};

use cfile;

// open a tempfile
let mut f = cfile::tmpfile().unwrap();

// write something to the stream
assert_eq!(f.write(b"test").unwrap(), 4);

// force to flush the stream
f.flush().unwrap();

// seek to the beginning of stream
assert_eq!(f.seek(SeekFrom::Start(0)).unwrap(), 0);

let mut r = BufReader::new(f);
let mut s = String::new();

// read back the text
assert_eq!(r.read_line(&mut s).unwrap(), 4);
assert_eq!(s, "test");

Dependencies

~0.4–1MB
~20K SLoC