Nicholas Nethercote dc372ac1de Added a regression test that checks if command line arguments with spaces work.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1442
2003-02-24 22:05:38 +00:00

12 lines
162 B
C

#include <stdio.h>
int main(int argc, char* argv[])
{
int i;
for (i = 0; i < argc; i++) {
printf("arg %d: `%s'\n", i, argv[i]);
}
return 0;
}