newlib-cygwin/newlib/libc/string/strlwr.c

47 lines
670 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/*
FUNCTION
<<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
<<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 *
_DEFUN (strlwr, (s),
char *s)
2000-02-18 03:39:52 +08:00
{
unsigned char *ucs = (unsigned char *) s;
for ( ; *ucs != '\0'; ucs++)
2000-02-18 03:39:52 +08:00
{
*ucs = tolower(*ucs);
2000-02-18 03:39:52 +08:00
}
return s;
2000-02-18 03:39:52 +08:00
}