strupr

Microsoft-specific C function - not part of ANSI C

Syntax

char* strupr(char* str)

Arguments

str
The string to change to upper case.

Return

A pointer to the modified string.

Description

Converts a string to upper case. Note that this function modifies the original string.

Also see

strlwr