boucane/src/libs/stdio.hpp
2021-04-29 08:49:41 +02:00

27 lines
378 B
C++

#pragma once
#include "core/types.hpp"
/// @brief Current active framebuffer driver
extern void (*__putchar)(char);
/**
* Print a char* in the framebuffer
*/
extern "C" void printf(char *,...);
/**
* Print a char*
*/
void print(char *s);
/**
* Print an integer using itoa()
*/
void printi(int i);
/**
* Print an integer as hex using itoh()
*/
void printh(u64 h);