home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1990-06-16 | 398 b | 11 lines |
-
- (* MAS PARM Definition Module. *)
- DEFINITION MODULE MASPARM;
- FROM Portab IMPORT STRING;
- PROCEDURE NextParm(VAR s : STRING): BOOLEAN;
- (*Next Parameter. The next parameter from the GEM environement is
- placed in string s. If no parameter was found, FALSE is returned
- and s is undefined, else TRUE is returned. The separator for the
- parameters is the blank character. *)
- END MASPARM.
- ə