13 lines
224 B
C
13 lines
224 B
C
|
#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
|