neovim/test/functional/fixtures/printargs-test.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
140 B
C
Raw Normal View History

2016-08-25 09:28:54 -07:00
#include <stdio.h>
int main(int argc, char **argv)
{
for (int i=1; i<argc; i++) {
printf("arg%d=%s;", i, argv[i]);
}
return 0;
}