Next: strncasecmp
—case-insensitive character string compare, Previous: strlen
—character string length, Up: Strings and Memory (string.h) [Contents][Index]
strlwr
—force string to lowercaseSynopsis
#include <string.h> char *strlwr(char *a);
Description
strlwr
converts each character in the string at a to
lowercase.
Returns
strlwr
returns its argument, a.
Portability
strlwr
is not widely portable.
strlwr
requires no supporting OS subroutines.