diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/cmd_todo.c | 10 | ||||
-rw-r--r-- | cmd/cmd_todo.h | 17 |
2 files changed, 27 insertions, 0 deletions
diff --git a/cmd/cmd_todo.c b/cmd/cmd_todo.c new file mode 100644 index 0000000..0f3ae58 --- /dev/null +++ b/cmd/cmd_todo.c @@ -0,0 +1,10 @@ +#include "cmd_todo.h" + +void *cmd_todo(void *data) +{ + char *ret = NULL; + + + + return ret; +} diff --git a/cmd/cmd_todo.h b/cmd/cmd_todo.h new file mode 100644 index 0000000..b5227e7 --- /dev/null +++ b/cmd/cmd_todo.h @@ -0,0 +1,17 @@ +#ifndef __CMD_TODO_H +#define __CMD_TODO_H + +#include <stdlib.h> +#include <stdio.h> +#include <stdint.h> +#include <time.h> +#include <unistd.h> +#include <sys/types.h> +#include <sys/stat.h> + +#include "util.h" +#include "debug.h" + +void *cmd_todo(void *data); + +#endif
\ No newline at end of file |