12 lines
224 B
C
Executable file
12 lines
224 B
C
Executable file
#ifndef _KERN_TTY_H
|
|
#define _KERN_TTY_H
|
|
|
|
#include <stddef.h>
|
|
|
|
void term_init(void);
|
|
void term_scroll(void);
|
|
void term_putc(char c);
|
|
void term_write(const char* str, size_t size);
|
|
void term_writestr(const char* str);
|
|
|
|
#endif
|