Go to the first, previous, next, last section, table of contents.


strlwr---force string to lower case

Synopsis

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

Description
strlwr converts each characters in the string at a to lower case.


Returns
strlwr returns its argument, a.


Portability
strlwr is not widely portable.

strlwr requires no supporting OS subroutines.



Go to the first, previous, next, last section, table of contents.