summaryrefslogtreecommitdiff
path: root/shell/commands.ads
diff options
context:
space:
mode:
Diffstat (limited to 'shell/commands.ads')
-rw-r--r--shell/commands.ads21
1 files changed, 21 insertions, 0 deletions
diff --git a/shell/commands.ads b/shell/commands.ads
new file mode 100644
index 0000000..ce47730
--- /dev/null
+++ b/shell/commands.ads
@@ -0,0 +1,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;