Older Newer
Sat, 03 Apr 2021 03:36:52 . . . . SyneRyder [Note that strupr is not part of ANSI C]


Changes by last author:

Added:
= 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