summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--util.c13
-rw-r--r--util.h6
-rw-r--r--util.test.c8
-rw-r--r--util.test.h10
4 files changed, 0 insertions, 37 deletions
diff --git a/util.c b/util.c
deleted file mode 100644
index 24dc82f..0000000
--- a/util.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "util.h"
-
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-int print(char *formatter) {
- char f = strcat(formatter, "\n");
- va_list ap;
- va_start(ap, formatter);
- printf(f, );
-}
diff --git a/util.h b/util.h
deleted file mode 100644
index 7cbf76c..0000000
--- a/util.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef CNAKE_UTIL_H
-#define CNAKE_UTIL_H
-
-int print(char *formatter);
-
-#endif
diff --git a/util.test.c b/util.test.c
deleted file mode 100644
index ba7ddd3..0000000
--- a/util.test.c
+++ /dev/null
@@ -1,8 +0,0 @@
-
-#include "test-lib.h"
-#include "util.h"
-
-
-#include <stdlib.h>
-#include <stdio.h>
-
diff --git a/util.test.h b/util.test.h
deleted file mode 100644
index 139bb02..0000000
--- a/util.test.h
+++ /dev/null
@@ -1,10 +0,0 @@
-
-#ifndef CNAKE_UTIL_H_TEST
-#define CNAKE_UTIL_H_TEST
-
-
-#include <stdlib.h>
-#include <stdio.h>
-
-
-#endif