STRLWR - convert a string into lower case.

(Not in the ANSI standard)

Usage:

#include <sdgstd.h>
s2 = strlwr( s1 );

Where:

char *s1;
points to the string whose letters are to be put into lower case.
char *s2;
points to the same string as "s1".

Description:

"strlwr" translates the alphabetic characters in "s1" into lower case. For example,

char s1[] = "ABC";
   ...
p = strlwr(s1);
printf("%s",s1);
   /* prints abc */

See Also:

expl c lib strupr

Copyright © 1996, Thinkage Ltd.