#ifndef KIO_H #define KIO_H #include #ifdef __cplusplus extern "C" { #endif void kio_bootstrap(); void kprintf(const char * fmt, ...); void kvprintf(const char * fmt, va_list args); void kputc(char c); void kputs(const char * s); void kputs_pad(const char * s, int width, char pad_char, bool pad_right); #ifdef __cplusplus } /* extern "C" */ #endif #endif