aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFreeArtMan <dos21h@gmail.com>2017-09-24 11:55:09 +0100
committerFreeArtMan <dos21h@gmail.com>2017-09-24 11:55:09 +0100
commit5de1c5ba999dba7da45316d3c1f2592c0e0e4804 (patch)
tree58e2fdc46c9b8b43598acdfad479bda9359b1df9 /cmd
parent1dcf41797bda73d9c9c286d1eff8309ee2148e13 (diff)
downloadagni-5de1c5ba999dba7da45316d3c1f2592c0e0e4804.tar.gz
agni-5de1c5ba999dba7da45316d3c1f2592c0e0e4804.zip
Rearranged code for more IPC protocols
Diffstat (limited to 'cmd')
-rw-r--r--cmd/cmd_todo.c10
-rw-r--r--cmd/cmd_todo.h17
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