summaryrefslogtreecommitdiff
path: root/cmd/cmd_help.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/cmd_help.c')
-rw-r--r--cmd/cmd_help.c15
1 files changed, 15 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