home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD1.img
/
d1xx
/
d183
/
mklib
/
edlib
/
stoupper.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-25
|
289b
|
18 lines
/* edlib version 1.0 of 04/08/88 */
/*
string to upper changes all lower case letters in a string to upper
case.
*/
#include <ctype.h>
char *stoupper(str)
char *str;
{
char *temp = str;
for ( ; *temp ; temp++ )
*temp = (char) toupper(*temp);
return(str);
}