Luna/kernel/src/arch/Serial.h
apio 30ac95bcf8 Use usize/isize instead of (s)size_t
Since we're using Rust-style integer types already, why not go all in?
2022-11-16 20:30:34 +01:00

10 lines
190 B
C++

#pragma once
#include <Types.h>
namespace Serial
{
void putchar(u8 c);
void write(const char* str, usize size);
void print(const char* str);
void println(const char* str);
}