home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CP/M
/
CPM_CDROM.iso
/
simtel
/
sigm
/
vols000
/
vol072
/
utility.pas
< 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
Pascal/Delphi Source File
|
1984-04-29
|
271 b
|
15 lines
{ Donated by Warren Smith, Feb 1982 }
Module Utility ;
Function Upper (In_Char : char) : char ;
Begin { Upper }
If (In_Char >= 'a') and (In_Char <= 'z') then
Upper := chr( ord(In_Char) - 32)
else
Upper := In_Char
end ; { Upper }
ModEnd.