| TIP: Click on subject to list as thread! | ANSI |
| echo: | |
|---|---|
| to: | |
| from: | |
| date: | |
| subject: | Re: More fun with Freed Z80 |
Hi!
Thanks but I prefer Pascal. My version is VERY inelegant but I
know I'll be able to understand it the next time I look at it.
Willi
My
version*******************************************************************
program strip;
{ Remove high order bit of all characters in an ASCII text file }
var buff: char;
inName, outName: string[64];
inFile, outFile: text;
begin
write('Name of input file? ');
readln(inName);
assign(inFile, inName);
reset(inFile);
write('Name of output file? ');
readln(outName);
assign(outFile, outName);
rewrite(outFile);
repeat
read(inFile, buff);
buff := chr(ord(buff) and $7F);
write(outFile, buff)
until eof(inFile);
close(inFile);
close(outFile)
end.
--- SBBSecho 2.12-Win32
* Origin: Derby City Gateway (1:2320/0)SEEN-BY: 10/1 3 34/999 120/228 123/500 128/2 140/1 222/2 226/0 236/150 249/303 SEEN-BY: 250/306 261/20 38 100 1404 1406 1410 1418 266/1413 280/1027 320/119 SEEN-BY: 393/11 396/45 633/260 267 712/848 800/432 801/161 189 2222/700 SEEN-BY: 2320/100 105 200 2905/0 @PATH: 2320/0 100 261/38 633/260 267 |
|
| SOURCE: echomail via fidonet.ozzmosis.com | |
Email questions or comments to sysop@ipingthereforeiam.com
All parts of this website painstakingly hand-crafted in the U.S.A.!
IPTIA BBS/MUD/Terminal/Game Server List, © 2025 IPTIA Consulting™.