blob: 9bed898c3dfff642d3c7e35d9a801846770427ed (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <stdarg.h>
int vprintf(const char* fmt, va_list);
int printf(const char* fmt, ...) __attribute__ ((format (printf, 1, 2)));
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)(int));
void set_puts(void (*func)(const char*));
|