mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-20 18:09:27 +02:00
*** empty log message ***
This commit is contained in:
parent
0f8c810da7
commit
ce76f8f658
23
tests/webtbf/tbug1238.pp
Normal file
23
tests/webtbf/tbug1238.pp
Normal file
@ -0,0 +1,23 @@
|
||||
{ Source provided for Free Pascal Bug Report 1238 }
|
||||
{ Submitted by "Mazen NEIFER" on 2000-11-14 }
|
||||
{ e-mail: mazen_neifer@ayna.com }
|
||||
PROGRAM Concat;
|
||||
VAR
|
||||
InputFile,OutputFile:File;
|
||||
c:Char;
|
||||
Buffer:Array[DWord]OF Byte;
|
||||
ReadCount,WriteCount:DWord;
|
||||
BEGIN
|
||||
Assign(OutputFile,'Maple.tar.gz');
|
||||
ReWrite(OutputFile,1);
|
||||
FOR c:='a' TO 'n' DO
|
||||
BEGIN
|
||||
Assign(InputFile,'xa'+c);
|
||||
Reset(InputFile,1);
|
||||
BlockRead(InputFile,Buffer,SizeOf(Buffer),ReadCount);
|
||||
BlockWrite(OutputFile,Buffer,SizeOf(Buffer),WriteCount);
|
||||
Close(InputFile);
|
||||
END;
|
||||
Close(OutputFile);
|
||||
END.
|
||||
|
Loading…
Reference in New Issue
Block a user