diff options
Diffstat (limited to 'libc/include/stdio.h')
| -rw-r--r-- | libc/include/stdio.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/include/stdio.h b/libc/include/stdio.h index 32391b8..ac547c7 100644 --- a/libc/include/stdio.h +++ b/libc/include/stdio.h @@ -1,3 +1,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*)); |