proot/test/argv.c

12 lines
132 B
C
Raw Permalink Normal View History

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