summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2019-03-01 11:40:25 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2019-03-01 11:40:25 -0800
commit06039e34bab7c5c33d91f6912539a86f884efd42 (patch)
tree15d60872df0f5860028a10e69a6c4d12886627f2
parent12ddc42740d2e11133d2991da8a6f02121f7877c (diff)
Nuke failed utilHEADmaster
-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