blob: 2127511dd117ed5517d05dcaf3f3751569f15cfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <stdio.h>
int
main(int argc, char** argv)
{
char* sep = "";
/*
* Echo all arguments separated with '::', so that we can check that
* quotes are interpreted correctly.
*/
while (argc-- > 1) {
printf("%s%s", sep, argv++[1]);
sep = "::";
}
putchar('\n');
return 0;
}
|