hos/kernel/lang/kio.h
josh a4d497544e added memcpy{,w,d}(), memset{,w,d}(); filled in kputc()
git-svn-id: svn://anubis/hos/trunk@46 5b3e749e-e535-0410-8002-a9bb6afbdfca
2009-07-13 21:42:18 +00:00

26 lines
310 B
C

#ifndef KIO_H
#define KIO_H
#include <stdarg.h>
#ifdef __cplusplus
extern "C" {
#endif
void kio_bootstrap();
void kprintf(char * fmt, ...);
void kvprintf(char * fmt, va_list args);
void kputc(char c);
void kputs(char * s);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif