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
10
void
tty_init(
void
);
11
void
tty_input_char(
char
c);
12
int
tty_read(
char
* buf, uint64_t count);
13
void
tty_flush_input(
void
);
14
15
#endif
basics.h
This is a basic header files with FrostWing specific short forms and basically a good for life header...
source
includes
tty.h
Generated by
1.16.1