blob: ac547c746b520a5df14eee5fee63dccfa2a7788b (
plain)
1
2
3
4
5
6
7
|
int printf(const char* fmt, ...);
int puts(const char*);
int putchar(int);
/* sets the I/O functions, allows easy switching between text mode and VBE */
void set_putchar(void (*func)(char));
void set_puts(void (*func)(const char*));
|