summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/cmd_help.c15
-rw-r--r--cmd/cmd_help.h15
2 files changed, 30 insertions, 0 deletions
diff --git a/cmd/cmd_help.c b/cmd/cmd_help.c
new file mode 100644
index 0000000..e62a8dd
--- /dev/null
+++ b/cmd/cmd_help.c
@@ -0,0 +1,15 @@
+#include "cmd_help.h"
+
+void *cmd_help(void *data)
+{
+ char *ret = NULL;
+
+ printf("HELP\n");
+
+ ret = alloc_new_str("This is greatest bot of all times."
+ "Have many cool features."
+ "Development style FUCK THE SYSTEM."
+ "Original ideas more accepted then mainstream ones.");
+
+ return ret;
+} \ No newline at end of file
diff --git a/cmd/cmd_help.h b/cmd/cmd_help.h
new file mode 100644
index 0000000..8bf393b
--- /dev/null
+++ b/cmd/cmd_help.h
@@ -0,0 +1,15 @@
+#ifndef __CMD_HELP_H
+#define __CMD_HELP_H
+
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+#include <math.h>
+
+#include "sds.h"
+#include "util.h"
+#include "debug.h"
+
+void *cmd_help(void *data);
+
+#endif \ No newline at end of file