mirror of
https://github.com/proot-me/proot.git
synced 2024-11-23 18:16:18 +00:00
12 lines
132 B
C
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;
|
|
}
|