4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-18 20:39:33 +08:00

41 lines
580 B
C
Raw Normal View History

2000-02-17 19:39:52 +00:00
/*
FUNCTION
<<strupr>>---force string to uppercase
INDEX
strupr
SYNOPSIS
2000-02-17 19:39:52 +00:00
#include <string.h>
char *strupr(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 *
strupr (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
}