RtlUpperString(3w)
NAME
RtlUpperString (NTDLL.@)
SYNOPSIS
void RtlUpperString ( STRING* dst, const STRING* src )
DESCRIPTION
Converts an Ascii string to uppercase.
PARAMS
dst [Out] Destination for converted string.
src [In] Source string to convert.
RETURNS
Nothing.
NOTES
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.
IMPLEMENTATION
Defined in "winternl.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/ntdll/rtlstr.c".
- Debug channel "ntdll".