home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
pc
/
CON-03A.ZIP
/
CONS_COM.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
|
1995-11-01
|
274 b
|
23 lines
unit cospiracy_comms_routines;
procedure
procedure send_file(ansi : string );
var
ch : char;
f : text;
begin
assign(f,'text\'+ansi);
reset(f);
repeat
read(f,ch)
sc(ch);
until eof(f)
close(f)
end;