From b7b86e3a26d4bfba9c49f0a24ec030a7b3ebd8a3 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Wed, 11 Feb 2026 13:26:57 -0500 Subject: initial commit --- src/conio.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/conio.h (limited to 'src/conio.h') diff --git a/src/conio.h b/src/conio.h new file mode 100644 index 0000000..25ca6c2 --- /dev/null +++ b/src/conio.h @@ -0,0 +1,14 @@ +/** + * conio + */ + +#ifndef CONIO_H +#define CONIO_H + +void print(const char* c); +void printc(char* c); +void printl(const char* c, unsigned short l); +void get_line(char* buf, unsigned char len); +char get_char(void); + +#endif /* CONIO_H */ -- cgit v1.2.3