2000-02-18 03:39:52 +08:00
|
|
|
/*
|
|
|
|
FUNCTION
|
2005-10-29 05:33:23 +08:00
|
|
|
<<strlwr>>---force string to lowercase
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
INDEX
|
|
|
|
strlwr
|
|
|
|
|
|
|
|
ANSI_SYNOPSIS
|
|
|
|
#include <string.h>
|
|
|
|
char *strlwr(char *<[a]>);
|
|
|
|
|
|
|
|
TRAD_SYNOPSIS
|
|
|
|
#include <string.h>
|
|
|
|
char *strlwr(<[a]>)
|
|
|
|
char *<[a]>;
|
|
|
|
|
|
|
|
DESCRIPTION
|
2005-10-29 05:33:23 +08:00
|
|
|
<<strlwr>> converts each character in the string at <[a]> to
|
|
|
|
lowercase.
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
RETURNS
|
|
|
|
<<strlwr>> returns its argument, <[a]>.
|
|
|
|
|
|
|
|
PORTABILITY
|
|
|
|
<<strlwr>> is not widely portable.
|
|
|
|
|
|
|
|
<<strlwr>> requires no supporting OS subroutines.
|
|
|
|
|
|
|
|
QUICKREF
|
|
|
|
strlwr
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
char *
|
2009-04-24 02:11:22 +08:00
|
|
|
_DEFUN (strlwr, (s),
|
|
|
|
char *s)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2009-04-24 02:11:22 +08:00
|
|
|
unsigned char *ucs = (unsigned char *) s;
|
|
|
|
for ( ; *ucs != '\0'; ucs++)
|
2000-02-18 03:39:52 +08:00
|
|
|
{
|
2009-04-24 02:11:22 +08:00
|
|
|
*ucs = tolower(*ucs);
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|
2009-04-24 02:11:22 +08:00
|
|
|
return s;
|
2000-02-18 03:39:52 +08:00
|
|
|
}
|