Initial public release: fresh history

This commit is contained in:
2025-10-22 04:28:20 -04:00
commit 10e8dfba2d
25 changed files with 2704 additions and 0 deletions

11
include/input.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef INPUT_H
#define INPUT_H
/* Raw TTY input helpers (canonical off, echo off). */
int input_init(void);
int input_restore(void);
/* Blocking getch from /dev/tty. Returns byte [0..255] or -1 on error. */
int input_getchar(void);
#endif