Hosted by
|
with Strings; use Strings;
package User_Interface is
procedure Try_Help;
procedure Invalid_Option
(Index : in Positive);
procedure Too_Few_Arguments;
procedure Too_Many_Arguments;
LF : constant Character := Character'Val(10);
procedure Start
(Program_Name : in String;
Parameters : in String;
Description : in String;
Parameters_Text : in String;
Extra_Options : in String;
Index : out Positive;
Exit_Now : out Boolean);
end User_Interface;
|