home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
206.lha
/
C-Functions
/
strupp.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-14
|
190 b
|
11 lines
#include <exec/types.h>
VOID strupp(pc) /* Make a string upper case only */
UBYTE *pc;
{
register int i=0;
while (pc[i] = upper(pc[i])) i++; /* Do untill /0 is found */
}