home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
216.lha
/
EdLib_v1.0
/
stoupper.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-02-15
|
289 b
|
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);
}