From 8704d42005f91e11257a34c94ff97485a9ba1379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20M=C3=BChlstrasser?= Date: Tue, 3 Sep 2019 10:04:30 +0200 Subject: [PATCH 071/170] Remove obsolete comment --- kbhit.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 kbhit.c diff --git a/kbhit.c b/kbhit.c new file mode 100644 index 00000000..4ce1894c --- /dev/null +++ b/kbhit.c @@ -0,0 +1,19 @@ +/* + * Keyboard test program. + */ + +#include + +int main(void) +{ + unsigned char c; + + clrscr(); + cputs(" Keyboard Test\r\n"); + + while (1) { + c = cgetc(); + cputc(c); + } + return 0; +} -- 2.26.0