RtlUpperString (NTDLL.@)
void RtlUpperString ( STRING* dst, const STRING* src )
Converts an Ascii string to uppercase.
dst | [Out] | Destination for converted string. |
src | [In] | Source string to convert. |
Nothing.
For the src characters from 'a' .. 'z' it assigns 'A' .. 'Z' to dst. All other src characters are copied unchanged to dst. The locale and multibyte characters are not taken into account (as native DLL). The number of character copied is the minimum of src->Length and the dst->MaximumLength.
Declared in "include/ddk/ntddk.h". gitlab.winehq.org/wine/wine/blob/master/include/ddk/ntddk.h
Implemented in "dlls/ntdll/rtlstr.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/rtlstr.c
Debug channel "ntdll".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.