home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
pascal
/
swag
/
strings.swg
/
0008_ST-CASE2.PAS.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
150 b
|
10 lines
Function DnCase(Ch: Char): Char;
Var
n : Byte Absolute ch;
begin
Case ch of
'A'..'Z': n := n or 32;
end;
DnCase := chr(n);
end;