6 releases (breaking)

0.11.0 Aug 9, 2021
0.10.0 May 14, 2021
0.9.0 May 12, 2021
0.8.0 May 5, 2021
0.5.0 Jul 22, 2019

#30 in #utf-16

Download history 2028/week @ 2023-12-22 2021/week @ 2023-12-29 2461/week @ 2024-01-05 3547/week @ 2024-01-12 3936/week @ 2024-01-19 3104/week @ 2024-01-26 2136/week @ 2024-02-02 3157/week @ 2024-02-09 3200/week @ 2024-02-16 3537/week @ 2024-02-23 3544/week @ 2024-03-01 4318/week @ 2024-03-08 3241/week @ 2024-03-15 2487/week @ 2024-03-22 3200/week @ 2024-03-29 2827/week @ 2024-04-05

12,705 downloads per month
Used in 8 crates (via wchar)

MIT/Apache

12KB
308 lines

wchar

build status crates.io docs.rs

This library introduces two macros to create UTF-16 and UTF-32 wide strings at compiler time, like L string literals in C.

[dependencies]
wchar = "0.10"

Compiler support: requires rustc 1.53+

Example

use wchar::{wch, wchz, wchar_t};

// Equivalent to `#define RUST L"Rust"` in C.
const RUST: &[wchar_t] = wch!("Rust\0"); // C strings are nul-terminated.
// Equivalent to `#define ALSO_RUST L"Rust"` in C.
const ALSO_RUST: &[wchar_t] = wchz!("Rust");

assert_eq!(RUST, &['R' as wchar_t, 'u' as wchar_t, 's' as wchar_t, 't' as wchar_t, 0x0000]);
assert_eq!(RUST, ALSO_RUST);

License

This project is licensed under either of Apache License, Version 2.0 or MIT License at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.5MB
~33K SLoC