28 lines
378 B
C
28 lines
378 B
C
|
|
#ifndef KIO_H
|
|
#define KIO_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#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
|