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

Declared in "ddk/ntddk.h". https://source.winehq.org/source/include/ddk/ntddk.h

Implemented in "dlls/ntdll/rtlstr.c". https://source.winehq.org/source/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 Apr 2024.