utf16-ext 0.1.0

Extensions for reading and writing utf-16
Documentation
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::*;