aboutsummaryrefslogblamecommitdiffstats
path: root/cmd/cmd_help.c
blob: e62a8dd66cade87d1dd3887ba4c067b7c412330c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}