1
0
mirror of https://github.com/proot-me/proot.git synced 2024-11-23 18:16:18 +00:00
proot/test/argv.c
2019-12-19 15:37:02 -05:00

12 lines
132 B
C

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