neptune/kern/libkern/uart.h
2025-09-01 22:22:35 +02:00

10 lines
219 B
C

#ifndef UART_KERNEL_H
#define UART_KERNEL_H
/** Send a single character to the UART device */
void uart_putc(char c);
/** Send a **NULL TERMINATED** string to the UART device */
void uart_puts(const char *s);
#endif