summaryrefslogtreecommitdiff
path: root/src/libs/tty.h
blob: 64970b9f4873c3c001a34dfac2ae3facb3a4b12e (plain)
1
2
3
4
5
6
7
8
9
#ifndef __TTY_H__
#define __TTY_H__

void tty_init(void);
char tty_getchar(void);
void tty_putchar(char c);
void tty_putstr(char *str);

#endif