quitando basura del index
[VSoRC/.git] / node_modules / node-pty / deps / winpty / misc / GetCh.cc
diff --git a/node_modules/node-pty/deps/winpty/misc/GetCh.cc b/node_modules/node-pty/deps/winpty/misc/GetCh.cc
deleted file mode 100644 (file)
index cd6ed19..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <conio.h>
-#include <ctype.h>
-#include <stdio.h>
-
-int main() {
-    printf("\nPress any keys -- Ctrl-D exits\n\n");
-
-    while (true) {
-        const int ch = getch();
-        printf("0x%x", ch);
-        if (isgraph(ch)) {
-            printf(" '%c'", ch);
-        }
-        printf("\n");
-        if (ch == 0x4) { // Ctrl-D
-            break;
-        }
-    }
-    return 0;
-}