#string #wide #c-style #compile-time #cstring #widestring

u16cstr

编译时创建 C 风格 u16 宽字符串的宏

8 个不稳定版本 (3 个破坏性更新)

0.5.0 2022 年 6 月 22 日
0.4.0 2022 年 6 月 21 日
0.3.1 2022 年 6 月 7 日
0.3.0 2021 年 10 月 14 日
0.1.1 2021 年 7 月 30 日

#3#c-style

MIT 许可证

6KB

u16cstr

Build crates.io Documentation dependency status MIT

编译时创建 C 风格 u16 宽字符串的宏。

示例

use u16cstr::{u16cstr, u16str};
use widestring::{U16CString, U16String, U16CStr, U16Str};

// c-style terminated wide string
const wide_c_string: &U16CStr = u16cstr!("Test");
assert_eq!(wide_c_string, U16CString::from_str("Test").unwrap().as_ucstr());

// non-terminated wide string
const wide_string: &U16Str = u16str!("Test");
assert_eq!(wide_string, U16String::from_str("Test").as_ustr());

许可证

MIT 许可证下许可 (LICENSEhttp://opensource.org/licenses/MIT)

依赖项

~2MB
~42K SLoC