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

47 lines
670 B
C
Raw Normal View History

2000-02-18 03:39:52 +08:00
/*
FUNCTION
<<strupr>>---force string to uppercase
INDEX
strupr
ANSI_SYNOPSIS
#include <string.h>
char *strupr(char *<[a]>);
TRAD_SYNOPSIS
#include <string.h>
char *strupr(<[a]>)
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 *
_DEFUN (strupr, (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 = toupper(*ucs);
2000-02-18 03:39:52 +08:00
}
return s;
2000-02-18 03:39:52 +08:00
}