diff io.h @ 1:42ba76f77035 default tip

the kernel with output and mem alloc
author meillo@marmaro.de
date Sun, 01 Nov 2009 23:50:51 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/io.h	Sun Nov 01 23:50:51 2009 +0100
@@ -0,0 +1,9 @@
+
+void cls(void);
+void setcolor(int fg, int bg);
+void setpos(int line, int col);
+void relpos(int move);
+
+int putchar(int c);
+int puts(const char* s);
+int printf(const char* fmt, ...);