Table of Content
HAL Forum
function string ReadChar (
LongInt pos)
Description:
Reads one char/byte from file by position
Parameters:
pos Position in file (from 0 to file_lenght-1)
function Boolean TestSIEEOF(LongInt pos)
begin
  Boolean res;
  string 1 a;
  
  res = false;
  a = ReadChar(pos);
  if (a=="") then begin
    res = true;
    while (NextImportLine(true)) begin
    end;
  end;
  TestSIEEOF = res;
  return;
end;
Related topics:
««