annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
1
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
2 void cls(void);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
3 void setcolor(int fg, int bg);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
4 void setpos(int line, int col);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
5 void relpos(int move);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
6
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
7 int putchar(int c);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
8 int puts(const char* s);
42ba76f77035 the kernel with output and mem alloc
meillo@marmaro.de
parents:
diff changeset
9 int printf(const char* fmt, ...);