summaryrefslogtreecommitdiff
path: root/shell/commands.ads
blob: ce477304ed2bd73401094fe0b6dfe0d2cc1fa1d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--
--  $Id$
--

with Interfaces.C;         use Interfaces.C;
with Interfaces.C.Strings; use Interfaces.C.Strings;
with RTEMS_Shell;          use RTEMS_Shell;

package Commands is

   function Prompt return String;
   function C_Prompt return chars_ptr;
   pragma Convention (C, C_Prompt);

   function Command_Test_Arguments
     (ArgC : Argument_Count_Type;
      ArgV : Argument_Vector_Type)
      return int;
   pragma Convention (C, Command_Test_Arguments);

end Commands;