From 4d0d275ce4e4e5dca6b77a7f590f4180c10d6242 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 20 Dec 2006 00:27:11 +0000 Subject: Functionality now replaced by a combination of readline() and system(). --- src/commandline/commands/help.c | 29 ----------------------------- src/commandline/commands/test.c | 20 -------------------- src/commandline/commands/test2.c | 20 -------------------- 3 files changed, 69 deletions(-) delete mode 100644 src/commandline/commands/help.c delete mode 100644 src/commandline/commands/test.c delete mode 100644 src/commandline/commands/test2.c (limited to 'src/commandline/commands') diff --git a/src/commandline/commands/help.c b/src/commandline/commands/help.c deleted file mode 100644 index 758c3c1e8..000000000 --- a/src/commandline/commands/help.c +++ /dev/null @@ -1,29 +0,0 @@ -#include -#include -#include -#include - -static struct command cmd_start[0] __table_start ( commands ); -static struct command cmd_end[0] __table_end ( commands ); - -void help_req(){} - -static int cmd_help_exec ( int argc, char **argv ) { - - struct command *ccmd; - - printf("Available commands:\n\n"); - - for ( ccmd = cmd_start ; ccmd < cmd_end ; ccmd++ ) { - printf (" %s\n", ccmd->name ); - } - - return 0; -} - -struct command help_command __command = { - .name = "help", - .exec = cmd_help_exec, -}; - - diff --git a/src/commandline/commands/test.c b/src/commandline/commands/test.c deleted file mode 100644 index 59b0b72b7..000000000 --- a/src/commandline/commands/test.c +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include - -void test_req(){} - -static int cmd_test_exec ( int argc, char **argv ) { - int i; - - printf("Hello, world!\nI got the following arguments passed to me: \n"); - for(i = 0; i < argc; i++){ - printf("%d: \"%s\"\n", i, argv[i]); - } - return 0; -} - -struct command test_command __command = { - .name = "test", - .exec = cmd_test_exec, -}; - diff --git a/src/commandline/commands/test2.c b/src/commandline/commands/test2.c deleted file mode 100644 index 6cb2ee70b..000000000 --- a/src/commandline/commands/test2.c +++ /dev/null @@ -1,20 +0,0 @@ -#include -#include - -void test2_req(){} - -static int cmd_test2_exec ( int argc, char **argv ) { - int i; - - printf("Hello, world!\nI got the following arguments passed to me: \n"); - for(i = 0; i < argc; i++){ - printf("%d: \"%s\"\n", i, argv[i]); - } - return 0; -} - -struct command test2_command __command = { - .name = "test2", - .exec = cmd_test2_exec, -}; - -- cgit v1.2.3-55-g7522