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++ 3.0r4 - <b>strlwr</b> 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 upper case characters in the string to lower case.

Example 

   #include <stdio.h>
   #include <string.h>
   #include <stdlib.h>

   char *string = "Mixed Case String";

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

Return Value

   Returns string.

See Also

   strupr



See Also: strupr

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