2023-10-07 18:28:48 +03:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-09-30 22:53:47 +03:00
|
|
|
namespace fb {
|
2023-10-07 18:28:48 +03:00
|
|
|
|
|
|
|
void init( );
|
|
|
|
|
|
|
|
void printf(char *str, ...);
|
|
|
|
|
|
|
|
void printf_at(size_t x, size_t y, char *str, ...);
|
|
|
|
} // namespace fb
|