1#![forbid(unsafe_op_in_unsafe_fn)]
2
3cfg_select! {
4    any(target_os = "windows", target_os = "uefi") => {
5        mod wtf8;
6        pub use wtf8::{Buf, Slice};
7    }
8    any(target_os = "motor") => {
9        mod utf8;
10        pub use utf8::{Buf, Slice};
11    }
12    _ => {
13        mod bytes;
14        pub use bytes::{Buf, Slice};
15    }
16}