2020-09-30 00:31:42 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2021-04-07 02:10:28 +02:00
|
|
|
#include <stddef.h>
|
|
|
|
|
2020-09-30 00:31:42 +02:00
|
|
|
void e9_putc(char c);
|
|
|
|
void e9_print(const char *msg);
|
|
|
|
void e9_puts(const char *msg);
|
|
|
|
void e9_printf(const char *format, ...);
|