Older Newer
Sat, 03 Apr 2021 03:37:35 . . . . SyneRyder [Note that strlwr is not part of ANSI C]


Changes by last author:

Added:
= strlwr =

Microsoft-specific C function - not part of ANSI C

== Syntax ==

:char* strlwr(char* str)

== Arguments ==

:str

::The string to change to lower case.

== Return ==

:A pointer to the modified string.

== Description ==

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

== Also see ==

:strupr