FrostWing
A lightweight raw-control operating system.
Loading...
Searching...
No Matches
tty.h
1#ifndef TTY_H
2#define TTY_H
3
4#include <basics.h>
5#include <stdint.h>
6
7#define TTY_LINE_MAX 256
8#define TTY_COOKED_MAX 1024
9
10void tty_init(void);
11void tty_input_char(char c);
12int tty_read(char* buf, uint64_t count);
13void tty_flush_input(void);
14
15#endif
This is a basic header files with FrostWing specific short forms and basically a good for life header...