1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#![warn(missing_docs)]
//! Crate for extending the `Read` and `Write` traits to allow
//! for reading and writing utf-16
pub extern crate byteorder;

mod auto;
mod read;
mod write;

pub use auto::*;
pub use read::*;
pub use write::*;