somen_decode/
lib.rs

1//! A byte string decoder for [somen](https://docs.rs/somen).
2#![no_std]
3#![doc(test(attr(warn(warnings))))]
4
5mod ascii;
6mod utf16;
7mod utf32;
8mod utf8;
9
10pub use ascii::ascii;
11pub use utf16::{utf16, utf16_be, utf16_le};
12pub use utf32::{utf32, utf32_be, utf32_le};
13pub use utf8::utf8;