[][src]Macro obfstr::wide

macro_rules! wide {
    ($s:expr) => { ... };
}

Wide string constant, returns an array of words.

The type of the returned constant is &'static [u16; LEN].

let expected = &['W' as u16, 'i' as u16, 'd' as u16, 'e' as u16, 0];
assert_eq!(obfstr::wide!("Wide\0"), expected);