mirror of
https://github.com/drasko/codezero.git
synced 2026-01-19 14:23:15 +01:00
8 lines
125 B
C
8 lines
125 B
C
#ifndef __LIBC_UART_H__
|
|
#define __LIBC_UART_H__
|
|
|
|
void uart_init(void);
|
|
void uart_putc(char c);
|
|
|
|
#endif /* __LIBC_UART_H__ */
|