aboutsummaryrefslogtreecommitdiff
path: root/src/utils/print.h
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2021-04-09 10:29:23 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2021-04-09 10:29:23 +0200
commitf6323421e22c3585c58b54658a11e1e4706cc8fa (patch)
treef317b7129dc4350fd088b59a43c1b6e80cd5c39b /src/utils/print.h
parent8fee35522dee033863f68c1d2b45f5fe988de9eb (diff)
Cleaning code and provide minimal libc
Diffstat (limited to 'src/utils/print.h')
-rw-r--r--src/utils/print.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/utils/print.h b/src/utils/print.h
deleted file mode 100644
index 163f4ec..0000000
--- a/src/utils/print.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef PRINT_H
-#define PRINT_H
-
-#include "types.h"
-
-typedef enum VIDEO_COLORS {
- BLACK=0, BLUE=1, GREEN=2,CYAN=3, RED=4,PURPLE=5,BROWN=6,GRAY=7,
- DARK_GRAY=8,LIGHT_BLUE=9,LIGHT_GREEN=10,LIGHT_CYAN=11,LIGHT_RED=12,LIGHT_PURPLE=13,YELLOW=14,WHITE=15
-
-} VIDEO_COLORS;
-
-typedef struct VIDEO_STATE VIDEO_STATE;
-
-/**
- * Print char
- */
-void putchar(char);
-void print(char*);
-void printc(char*,VIDEO_COLORS c);
-void scrollup();
-void clear();
-
-#endif