RtlUpcaseUnicodeChar - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

/**
 * The RtlUpcaseUnicodeChar routine converts the specified Unicode character to uppercase.
 *
 * \param[in] SourceCharacter Specifies the character to convert.
 * \return The uppercase version of the specified Unicode character.
 * \sa https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/wdm/nf-wdm-rtlupcaseunicodechar
 */
NTSYSAPI
WCHAR
NTAPI
RtlUpcaseUnicodeChar(
    _In_ WCHAR SourceCharacter
    );

#endif

View code on GitHub
// wdm.h

NTSYSAPI WCHAR RtlUpcaseUnicodeChar(
  [in] WCHAR SourceCharacter
);

View the official Windows Driver Kit DDI reference

NtDoc

This function is documented in Windows Driver Kit.

Windows Driver Kit DDI reference (nf-wdm-rtlupcaseunicodechar)

RtlUpcaseUnicodeChar function

Description

The RtlUpcaseUnicodeChar routine converts the specified Unicode character to uppercase.

Parameters

SourceCharacter [in]

Specifies the character to convert.

Return value

RtlUpcaseUnicodeChar returns the uppercase version of the specified Unicode character.

See also

RtlUpcaseUnicodeString

RtlUpperChar