aboutsummaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test.c')
-rw-r--r--test.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/test.c b/test.c
deleted file mode 100644
index 1bf5e4f..0000000
--- a/test.c
+++ /dev/null
@@ -1,19 +0,0 @@
-#include <stdio.h>
-
-void print(char* x) {
- printf("%s", x);
-}
-void printfl(float x) {
- printf("%f", x);
-}
-void printdeez(int x) {
- printf("%d", x);
-}
-
-int as_int(float x) {
- return (int) x;
-}
-
-void termpos(int x, int y) {
- printf("\x1b[%d;%dH", x, y);
-}