Retro68/gcc/newlib/libc/string/strupr.c

41 lines
580 B
C
Raw Normal View History

2017-04-11 21:13:36 +00:00
/*
FUNCTION
<<strupr>>---force string to uppercase
INDEX
strupr
2018-12-28 15:30:48 +00:00
SYNOPSIS
2017-04-11 21:13:36 +00:00
#include <string.h>
char *strupr(char *<[a]>);
DESCRIPTION
<<strupr>> converts each character in the string at <[a]> to
uppercase.
RETURNS
<<strupr>> returns its argument, <[a]>.
PORTABILITY
<<strupr>> is not widely portable.
<<strupr>> requires no supporting OS subroutines.
QUICKREF
strupr
*/
#include <string.h>
#include <ctype.h>
char *
2018-12-28 15:30:48 +00:00
strupr (char *s)
2017-04-11 21:13:36 +00:00
{
unsigned char *ucs = (unsigned char *) s;
for ( ; *ucs != '\0'; ucs++)
{
*ucs = toupper(*ucs);
}
return s;
}