]> pd.if.org Git - pd_readline/blobdiff - testkey.c
Getting close to a basic working readline now.
[pd_readline] / testkey.c
diff --git a/testkey.c b/testkey.c
deleted file mode 100644 (file)
index f6e6246..0000000
--- a/testkey.c
+++ /dev/null
@@ -1,26 +0,0 @@
-
-
-/*  testkey.c  */ 
-
-/*  Prints the keycode for a given key */  
-
-
-
-#include <stdio.h> 
-#include <stdlib.h> 
-
-
-
-int main (void) 
-{
-
-int c; 
-
-while( (c == getchar() ) ) 
-{
-   printf("%d 0x%02X\n", c );
-} 
-
-return 0; 
-
-}