26 lines
328 B
C
26 lines
328 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);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif
|