summaryrefslogtreecommitdiffstats
path: root/vendor/os_str_bytes/src/windows/wtf8/mod.rs
blob: d8b0dc4a7fbfe6d504da576ea5dfabe4f1c9ac89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// This module implements the WTF-8 encoding specification:
// https://simonsapin.github.io/wtf-8/

use super::EncodingError;
use super::Result;

mod code_points;
pub(super) use code_points::CodePoints;

mod convert;
pub(super) use convert::encode_wide;
pub(super) use convert::DecodeWide;

if_raw_str! {
    mod string;
    pub(crate) use string::ends_with;
    pub(crate) use string::starts_with;
}