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

41 lines
580 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/*
FUNCTION
<<strupr>>---force string to uppercase
INDEX
strupr
SYNOPSIS
2000-02-18 03:39:52 +08:00
#include <string.h>
char *strupr(char *<[a]>);
DESCRIPTION
<<strupr>> converts each character in the string at <[a]> to
uppercase.
2000-02-18 03:39:52 +08:00
RETURNS
<<strupr>> returns its argument, <[a]>.
PORTABILITY
<<strupr>> is not widely portable.
<<strupr>> requires no supporting OS subroutines.
QUICKREF
strupr
*/
2000-02-18 03:39:52 +08:00
#include <string.h>
#include <ctype.h>
char *
strupr (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 = toupper(*ucs);
2000-02-18 03:39:52 +08:00
}
return s;
2000-02-18 03:39:52 +08:00
}