12 lines
241 B
C
12 lines
241 B
C
#pragma once
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
|
|
extern void (*limine_print)(const char *buf, size_t size);
|
|
|
|
void e9_putc(char c);
|
|
void e9_print(const char *msg);
|
|
void e9_puts(const char *msg);
|
|
void e9_printf(const char *format, ...);
|