fn upcaseW(c: u16) u16
[src]
Cross-platform implementation of ntdll.RtlUpcaseUnicodeChar
. Transforms the UTF-16 code unit in c
to its uppercased version if there is one. Otherwise, returns c
unmodified.
Note: When this function is referenced, it will need to include uppercase_table.len * 2
bytes of data in the resulting binary since it depends on the uppercase_table
data. When targeting Windows, ntdll.RtlUpcaseUnicodeChar
can be used instead to avoid having to include a copy of this data.