X-Git-Url: https://git.josue.xyz/?p=VSoRC%2F.git;a=blobdiff_plain;f=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fmisc%2FShowArgv.cc;fp=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fmisc%2FShowArgv.cc;h=0000000000000000000000000000000000000000;hp=29a0f0913162ca5649165f64733c52eb883dcd8e;hb=5e96dd57ddd883604e87f62bdddcb111c63a6e1a;hpb=acb5f682a2b75b972710cabd81658f63071324b0 diff --git a/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc b/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc deleted file mode 100644 index 29a0f09..0000000 --- a/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc +++ /dev/null @@ -1,12 +0,0 @@ -// This test program is useful for studying commandline<->argv conversion. - -#include -#include - -int main(int argc, char **argv) -{ - printf("cmdline = [%s]\n", GetCommandLine()); - for (int i = 0; i < argc; ++i) - printf("[%s]\n", argv[i]); - return 0; -}