quitando basura del index
[VSoRC/.git] / node_modules / node-pty / deps / winpty / misc / Win32Echo2.cc
diff --git a/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc b/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc
deleted file mode 100644 (file)
index b2ea2ad..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * A Win32 program that reads raw console input with getch and echos
- * it to stdout.
- */
-
-#include <stdio.h>
-#include <conio.h>
-
-int main()
-{
-    int count = 0;
-    while (true) {
-        int ch = getch();
-        printf("%02x ", ch);
-        if (++count == 50)
-            break;
-    }
-    return 0;
-}