mirror of
https://github.com/limine-bootloader/limine
synced 2024-12-05 06:31:55 +03:00
9 lines
161 B
C
9 lines
161 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdarg.h>
|
||
|
|
||
|
void e9_putc(char c);
|
||
|
void e9_print(const char *msg);
|
||
|
void e9_puts(const char *msg);
|
||
|
void e9_printf(const char *format, ...);
|