summaryrefslogtreecommitdiff
path: root/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'command.c')
-rw-r--r--command.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/command.c b/command.c
new file mode 100644
index 0000000..c7a7be8
--- /dev/null
+++ b/command.c
@@ -0,0 +1,14 @@
+#include <stdio.h>
+
+#include "command.h"
+
+int command_handle(int fd){
+ //TODO
+ printf("Handling data on command fd\n");
+ return 0;
+}
+
+void command_free(){
+ //TODO
+ printf("Shutting down any remaining commands\n");
+}