summaryrefslogtreecommitdiff
path: root/source/CommandLineInterface.def
blob: e4688c4bff91d34609a10f584c2e97d3bd81036f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DEFINITION MODULE CommandLineInterface;

FROM Common IMPORT ShortString;

TYPE
  CommandLine = RECORD
    input: ShortString;
    output: ShortString;
    lex: BOOLEAN;
    parse: BOOLEAN
  END;
  PCommandLine = POINTER TO CommandLine;

PROCEDURE parse_command_line(): PCommandLine;

END CommandLineInterface.