X-Git-Url: https://git.josue.xyz/?p=VSoRC%2F.git;a=blobdiff_plain;f=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fmisc%2FWin32Echo2.cc;fp=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fmisc%2FWin32Echo2.cc;h=0000000000000000000000000000000000000000;hp=b2ea2ad1c5d75eb70b587e0f1f0fbe4922ceb51f;hb=5e96dd57ddd883604e87f62bdddcb111c63a6e1a;hpb=acb5f682a2b75b972710cabd81658f63071324b0 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 index b2ea2ad..0000000 --- a/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc +++ /dev/null @@ -1,19 +0,0 @@ -/* - * A Win32 program that reads raw console input with getch and echos - * it to stdout. - */ - -#include -#include - -int main() -{ - int count = 0; - while (true) { - int ch = getch(); - printf("%02x ", ch); - if (++count == 50) - break; - } - return 0; -}