home *** CD-ROM | disk | FTP | other *** search
-
- -- (C) 1995 David A. Wheeler. Permission is granted to use this
- -- program for any purpose, commercial or otherwise, as long as
- -- credit is given to David A. Wheeler.
-
- with Ada.Strings.Unbounded;
- use Ada.Strings.Unbounded;
-
- package Parser is
- procedure Execute(Command : in Unbounded_String; Quit : out Boolean);
- -- Executes the given command.
- -- Sets Quit to True if the user may run additional commands.
- end Parser;
-
-