Luna/kernel/src/arch/Serial.h

10 lines
191 B
C
Raw Normal View History

2022-11-13 09:30:10 +00:00
#pragma once
#include <Types.h>
namespace Serial
{
void putchar(u8 c);
void write(const char* str, size_t size);
void print(const char* str);
void println(const char* str);
}