| Crates.io | cfile |
| lib.rs | cfile |
| version | 0.5.1 |
| created_at | 2016-04-29 11:30:13.123569+00 |
| updated_at | 2019-11-07 08:00:46.73993+00 |
| description | Rust bindings to C *FILE stream |
| homepage | |
| repository | https://github.com/flier/rust-cfile |
| max_upload_size | |
| id | 4903 |
| size | 42,805 |
Rust bindings to C *FILE stream
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");