home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 2 / crawlyvol2.bin / program / misc / mas / mashelp / masu.def < prev    next >
Encoding:
Modula Definition  |  1991-03-18  |  550 b   |  33 lines

  1.  
  2. DEFINITION MODULE MASU;
  3.  
  4. (* MAS Utility Definition Module. *)
  5.  
  6. FROM MASSTOR IMPORT LIST;
  7.  
  8.  
  9. VAR  Time, Debug: BOOLEAN;
  10.  
  11.  
  12. PROCEDURE InitExternalsU();
  13. (*Initialize external compiled utility procedures. *)
  14.  
  15.  
  16. PROCEDURE DoParse(): LIST;
  17. (*Do parse. Call specific Parser. *)
  18.  
  19.  
  20. PROCEDURE DoWrite(Y: LIST);
  21. (*Do Write. Write according to Parser. *)
  22.  
  23.  
  24. PROCEDURE MWRITE(Y: LIST);
  25. (*Output in modula like syntax. *)
  26.                        
  27.  
  28. PROCEDURE MWRIT1(Y: LIST; top: BOOLEAN);
  29. (*Output in modula like syntax. *)
  30.  
  31.  
  32. END MASU.
  33.