bond/x64/src/include/kernel/hal/print.h

13 lines
241 B
C
Raw Normal View History

2018-01-25 09:53:35 +00:00
#ifndef _S_PRINT_H_
#define _S_PRINT_H_
#include "abi.h"
#include "type.h"
void KABI hal_printf(const char* str, ...);
2018-01-25 19:11:22 +00:00
void KABI hal_vprintf(const char* str, va_list args);
2018-01-25 09:53:35 +00:00
void KABI hal_clear_screen();
void KABI hal_print_init();
#endif