summaryrefslogtreecommitdiff
path: root/src/tools/irm/main.c
diff options
context:
space:
mode:
authorSander Vrijders <sander.vrijders@intec.ugent.be>2016-02-22 17:34:21 +0100
committerDimitri Staessens <dimitri.staessens@intec.ugent.be>2016-02-23 01:53:26 +0100
commit9fb8dff10efc9869264e55da64b64c4aadf805a6 (patch)
treefcac980032d9c414ae086756f3dd7b94d1a7cc55 /src/tools/irm/main.c
parent4251bbb496e64aeeceb70ab1a6716201051769e1 (diff)
downloadouroboros-9fb8dff10efc9869264e55da64b64c4aadf805a6.tar.gz
ouroboros-9fb8dff10efc9869264e55da64b64c4aadf805a6.zip
src: Rename daemons and add tools folder
This renames the daemons to end with a 'd', as is common for UNIX daemons. It also adds a tools folder, that will hold the tools of the Ouroboros prototype. Examples are a simple echo application, an application to instruct the IRM ...
Diffstat (limited to 'src/tools/irm/main.c')
-rw-r--r--src/tools/irm/main.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/tools/irm/main.c b/src/tools/irm/main.c
new file mode 100644
index 00000000..bad1000e
--- /dev/null
+++ b/src/tools/irm/main.c
@@ -0,0 +1,32 @@
+/*
+ * Ouroboros - Copyright (C) 2016
+ *
+ * A tool to instruct the IRM
+ *
+ * Sander Vrijders <sander.vrijders@intec.ugent.be>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#define OUROBOROS_PREFIX "irm"
+
+#include <ouroboros/logs.h>
+
+int main () {
+
+ LOG_DBG("Test of the IRM tool");
+
+ return 0;
+}