RtlUpperString.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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".

Debug channel "ntdll".