( |
|
|
|||
Reads one char/byte from file by position |
Parameters: | |
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: |