home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Great Hits 1994
/
GREAT_HITS_1994.ISO
/
util
/
_termin.exe
/
0150TER2._XE
/
MANUAL.EXE
/
TEST78.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1994-08-20
|
727b
|
27 lines
{ -------------------------- Terminate utility ------------------------------ }
{ }
{ This program will simply test if some of the lines in TERMINAT.DOC is }
{ longer than 78, which is the maximum allowed in each helpfile. }
{ }
{ -------------------------- Terminate utility ------------------------------ }
var
t:text;
s:string;
x:word;
begin
assign(t,'terminat.doc');
reset(t);
x:=0;
while not eof(t) do
begin
inc(x);
readln(t,s);
if length(s)>78 Then writeln(x,': '+s);
end;
close(t);
end.