My Kernel v0.1.0
uart.h
1#ifndef KERNEL_DEVICES_UART_H
2#define KERNEL_DEVICES_UART_H
3
4#include <kernel/error.h>
5
6/* TODO: Initcall */
7error_t uart_init(void);
8
9/* TODO: console use device */
10int uart_putc(const char c);
11
12#endif /* KERNEL_DEVICES_UART_H */