From f6323421e22c3585c58b54658a11e1e4706cc8fa Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Fri, 9 Apr 2021 10:29:23 +0200 Subject: Cleaning code and provide minimal libc --- src/utils/print.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 src/utils/print.h (limited to 'src/utils/print.h') 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 -- cgit v1.2.3