Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - strlwr http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
                                  strlwr

   Usage
   #include <string.h>
   char *strlwr(char *string);

   Description
   Converts any uppercase characters in the string to lower case.

   Example
   #include <stdio.h>
   #include <string.h>
   char *string = "Mixed Case String";

   main()
   {
        printf("strlwr Example [%s]\n",strlwr(string));
   }

   Return Value
   Returns string.


See Also: strupr

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson