summaryrefslogtreecommitdiff
path: root/cmd_cmd.c
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-05-04 22:21:39 +0100
committerFreeArtMan <dos21h@gmail.com>2017-05-04 22:21:39 +0100
commit417edbce2abde566e94d8986b487293d55e173c0 (patch)
tree133db23e0c58704f06447a77e8a1e964bf98be2c /cmd_cmd.c
parent0a24537719de7cab1b4df46e7d6a22564f66ec6a (diff)
downloadagni-417edbce2abde566e94d8986b487293d55e173c0.tar.gz
agni-417edbce2abde566e94d8986b487293d55e173c0.zip
Added new commands CMD,SHA1. Added support of params for commands. Fixed some bugs with uninitialised buffers
Diffstat (limited to 'cmd_cmd.c')
-rw-r--r--cmd_cmd.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/cmd_cmd.c b/cmd_cmd.c
new file mode 100644
index 0000000..d5983cf
--- /dev/null
+++ b/cmd_cmd.c
@@ -0,0 +1,20 @@
+#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", data);
+
+
+
+ ret = alloc_new_str(buf);
+
+ return ret;
+}