mirror of
https://github.com/gbowne1/ClassicOS.git
synced 2025-05-15 09:01:27 -07:00
13 lines
235 B
C
13 lines
235 B
C
#ifndef TERMINAL_H
|
|
#define TERMINAL_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void terminal_initialize(void);
|
|
void terminal_putchar(char c);
|
|
void terminal_write(const char *str);
|
|
void terminal_setcolor(uint8_t color);
|
|
void terminal_clear(void);
|
|
|
|
#endif
|