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/libc/stdio.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/libc/stdio.h (limited to 'src/libc/stdio.h') diff --git a/src/libc/stdio.h b/src/libc/stdio.h new file mode 100644 index 0000000..ece8df5 --- /dev/null +++ b/src/libc/stdio.h @@ -0,0 +1,10 @@ +#ifndef STDIO_H +#define STDIO_H + +#include "utils/framebuffer.h" + +void print(char*); +void printc(char*,VIDEO_COLORS c); +void printi(int i); + +#endif \ No newline at end of file -- cgit v1.2.3