Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
refs/heads/release
/
.
/
Tests
/
CTestTest
/
SmallAndFast
/
echoargs.c
blob: 26c63493a764fd64fc6b9ba819f674323d059455 [
file
] [
log
] [
blame
] [
edit
]
#include
<stdio.h>
int
main
(
int
argc
,
char
const
*
argv
[])
{
int
i
=
0
;
for
(;
i
<
argc
;
++
i
)
{
fprintf
(
stdout
,
"%s\n"
,
argv
[
i
]);
}
return
0
;
}