summaryrefslogtreecommitdiff
path: root/source/CommandLineInterface.def
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-12-03 09:36:26 +0100
committerEugen Wissner <belka@caraus.de>2025-12-03 09:36:26 +0100
commit8eb87757a0a3df6bc36f7251f010c849916455df (patch)
tree230d6fe4bb3f9996c43c8b5f96f1f580a7c27fa9 /source/CommandLineInterface.def
parent1c2a8e6da852016bedcc70e45cd328836a20f18a (diff)
downloadelna-8eb87757a0a3df6bc36f7251f010c849916455df.tar.gz
Remove modula-2 definitions
Diffstat (limited to 'source/CommandLineInterface.def')
-rw-r--r--source/CommandLineInterface.def16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/CommandLineInterface.def b/source/CommandLineInterface.def
deleted file mode 100644
index e4688c4..0000000
--- a/source/CommandLineInterface.def
+++ /dev/null
@@ -1,16 +0,0 @@
-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.