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

u16cstr

A macro for creating c-style u16 wide strings at compile time

8 unstable releases (3 breaking)

0.5.0 Jun 22, 2022
0.4.0 Jun 21, 2022
0.3.1 Jun 7, 2022
0.3.0 Oct 14, 2021
0.1.1 Jul 30, 2021

#856 in Rust patterns

Download history 15/week @ 2022-12-01 92/week @ 2022-12-08 45/week @ 2022-12-15 40/week @ 2022-12-22 22/week @ 2022-12-29 20/week @ 2023-01-05 33/week @ 2023-01-12 35/week @ 2023-01-19 23/week @ 2023-01-26 32/week @ 2023-02-02 29/week @ 2023-02-09 40/week @ 2023-02-16 37/week @ 2023-02-23 17/week @ 2023-03-02 36/week @ 2023-03-09 30/week @ 2023-03-16

120 downloads per month
Used in netcorehost

MIT license

5KB

u16cstr

Build crates.io Documentation dependency status MIT

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

~1.5MB
~33K SLoC