1 2 3
pub(crate) fn to_utf16_z(s: &str) -> Vec<u16> { s.encode_utf16().chain(std::iter::once(0)).collect() }