diff options
Diffstat (limited to 'cmd_date.c')
-rw-r--r-- | cmd_date.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +#include "cmd_date.h" + +void *cmd_date(void *data) +{ + char *param = (char *)data; + char *ret = NULL; + + printf("DATE\n"); + + ret = alloc_new_str("I dont whant to date with you\n"); + + return ret; +}
\ No newline at end of file |