diff options
| author | Loïc Guégan <manzerbredes@mailbox.org> | 2025-03-24 09:33:49 +0100 |
|---|---|---|
| committer | Loïc Guégan <manzerbredes@mailbox.org> | 2025-03-24 09:33:49 +0100 |
| commit | 7741f014456df395b655b72d9ebb848af72cc37e (patch) | |
| tree | 5ddae273929780ac7c0af2a26b64ba1a382e4b05 /src/libs/tty.h | |
| parent | d3ecfe3498d73d3ba924063bc1001cca3f333170 (diff) | |
Init repository
Diffstat (limited to 'src/libs/tty.h')
| -rw-r--r-- | src/libs/tty.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libs/tty.h b/src/libs/tty.h new file mode 100644 index 0000000..64970b9 --- /dev/null +++ b/src/libs/tty.h @@ -0,0 +1,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 |
