rulimine/test/e9print.h

10 lines
181 B
C
Raw Normal View History

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