4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-17 12:01:53 +08:00

47 lines
670 B
C
Raw Normal View History

2000-02-17 19:39:52 +00: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-17 19:39:52 +00:00
RETURNS
<<strupr>> returns its argument, <[a]>.
PORTABILITY
<<strupr>> is not widely portable.
<<strupr>> requires no supporting OS subroutines.
QUICKREF
strupr
*/
2000-02-17 19:39:52 +00:00
#include <string.h>
#include <ctype.h>
char *
_DEFUN (strupr, (s),
char *s)
2000-02-17 19:39:52 +00:00
{
unsigned char *ucs = (unsigned char *) s;
for ( ; *ucs != '\0'; ucs++)
2000-02-17 19:39:52 +00:00
{
*ucs = toupper(*ucs);
2000-02-17 19:39:52 +00:00
}
return s;
2000-02-17 19:39:52 +00:00
}