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 "dlls/ntdll/rtlstr.c". source.winehq.org/source/dlls/ntdll/rtlstr.c

Debug channel "ntdll".


Copyright © 2008 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Jul 2008.