home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d0xx / d079 / m2error.lha / M2Error / fast.def next >
Encoding:
Modula Definition  |  1987-06-04  |  672 b   |  33 lines

  1. (*
  2.  
  3.     This module implements fast text I/O. In the
  4.     first version only reading is implemented.
  5.     
  6.     Created: 3/26/87 by Richie Bielak
  7.     
  8.     Modified:
  9.  
  10.     This program is PD. It can be freely copied and modified,
  11.     but please leave my name in. Just throw your onw
  12.     name in....thanks..
  13.  
  14. *)
  15. DEFINITION MODULE FastTextIO;
  16.  
  17.  
  18.    TYPE
  19.       FastFile;
  20.  
  21.    PROCEDURE OpenFF (VAR F : FastFile; name : ARRAY OF CHAR;
  22.                      VAR suc : BOOLEAN);
  23.    
  24.    PROCEDURE CloseFF (VAR F : FastFile);
  25.    
  26.    PROCEDURE ReadLine (F : FastFile; VAR buff : ARRAY OF CHAR);
  27.  
  28.    PROCEDURE EofFF (F : FastFile) : BOOLEAN;
  29.  
  30.    PROCEDURE SkipLines (F : FastFile; count : CARDINAL);
  31.  
  32. END FastTextIO.
  33.