summaryrefslogtreecommitdiff
path: root/cmd_cmd.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-05-20 13:43:49 +0100
committerFreeArtMan <dos21h@gmail.com>2017-05-20 13:43:49 +0100
commit126fa84b8591c3b285b7f598089451aa22447f10 (patch)
tree29eb78cd41870a1e4211e45b8e551a94b401ffe7 /cmd_cmd.c
parentc03a145002445eaaa814e3f133c9a28f991bb860 (diff)
downloadagni-126fa84b8591c3b285b7f598089451aa22447f10.tar.gz
agni-126fa84b8591c3b285b7f598089451aa22447f10.zip
Moved commands to seperate directory, moved external sources to seperate directory, updated Makefile with auto include and auto compile features
Diffstat (limited to 'cmd_cmd.c')
-rw-r--r--cmd_cmd.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/cmd_cmd.c b/cmd_cmd.c
deleted file mode 100644
index e893687..0000000
--- a/cmd_cmd.c
+++ /dev/null
@@ -1,20 +0,0 @@
-#include "cmd_cmd.h"
-
-void *cmd_cmd(void *data)
-{
- char *ret = NULL;
- int fret=-1;
-
- const int buf_size = 128;
- char buf[buf_size+1];
-
- printf("CMD\n");
-
- snprintf(buf, buf_size, "%s\n", data);
-
-
-
- ret = alloc_new_str(buf);
-
- return ret;
-}