3 type String_Access
is access all String;
4 type String_List
is array (Positive range <>) of String_Access
;
5 type String_List_Access
is access all String_List
;
7 type Command_Line_Iterator
is record
8 Params
: String_List_Access
;
12 function Current_Parameter
(Iter
: Command_Line_Iterator
) return String;