home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_oth / m2error.lzh / M2ERROR / GETFIL.DEF < prev    next >
Encoding:
Modula Definition  |  1991-08-16  |  491 b   |  22 lines

  1. (* 
  2.     This module imports a procedure that interprets
  3.     the command line and builds names for input
  4.     source file and the error file.
  5.  
  6.     Created: 3/29/87 by Richie Bielak
  7.  
  8.     Modified:
  9.  
  10.     Copyright (c) 1987 by Richie Bielak.
  11.     
  12.     This program may be freely copied, but please leave
  13.     my name in.....Thanks....Richie
  14.  
  15. *)
  16. DEFINITION MODULE GetFileNames;
  17.  
  18.  PROCEDURE ProcessCommandLine (VAR infile, outfile, errfile : ARRAY OF CHAR;
  19.                                VAR succ : BOOLEAN);
  20.  
  21. END GetFileNames.
  22.