home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1987-06-04 | 491 b | 22 lines |
- (*
- This module imports a procedure that interprets
- the command line and builds names for input
- source file and the error file.
-
- Created: 3/29/87 by Richie Bielak
-
- Modified:
-
- Copyright (c) 1987 by Richie Bielak.
-
- This program may be freely copied, but please leave
- my name in.....Thanks....Richie
-
- *)
- DEFINITION MODULE GetFileNames;
-
- PROCEDURE ProcessCommandLine (VAR infile, outfile, errfile : ARRAY OF CHAR;
- VAR succ : BOOLEAN);
-
- END GetFileNames.
-