mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
12 lines
156 B
C
12 lines
156 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, const char* argv[])
|
|
{
|
|
int i = 0;
|
|
for (; i<argc; ++i)
|
|
{
|
|
fprintf(stdout, "%s\n", argv[i]);
|
|
}
|
|
return 0;
|
|
}
|