18 lines
289 B
C
18 lines
289 B
C
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/ioctl.h>
|
|
#include <unistd.h>
|
|
#include <u_vmam.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
for (int i = 0; i < argc; i++)
|
|
{
|
|
printf("argv[%d]: %s\n", i, argv[i]);
|
|
}
|
|
return 0;
|
|
}
|