mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
12 lines
162 B
C
12 lines
162 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
printf("arg %d: `%s'\n", i, argv[i]);
|
|
}
|
|
return 0;
|
|
}
|