9 unstable releases
Uses new Rust 2024
| 0.6.0 | Dec 7, 2025 |
|---|---|
| 0.5.0 |
|
| 0.4.0 | Jun 21, 2022 |
| 0.3.1 | Jun 7, 2022 |
| 0.1.1 | Jul 30, 2021 |
#860 in Rust patterns
36 downloads per month
6KB
This project has been deprecated as it is now a part of widestring.
u16cstr
A macro for creating c-style u16 wide strings at compile time.
Example
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());
License
Licensed under MIT license (LICENSE or http://opensource.org/licenses/MIT)
Dependencies
~2MB
~47K SLoC