home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Scene Storm
/
Scene Storm - Volume 1.iso
/
coding
/
c
/
pdc
/
libsrc
/
stringlib
/
toupper.c
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1990-04-07
|
196 b
|
12 lines
/*
* PDC I/O Library Copyright (C) 1988 by J.A. Lydiatt.
* Freely Distributable for non-commercial use.
*/
char toupper(c)
char c;
{
if ( 'a' <= c && c <= 'z' )
c += 'A' - 'a';
return c;
}