Cross Reference: main.c
xref
: /
opengrok
/
testdata
/
repositories
/
cvs_test
/
cvsrepo
/
main.c
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
main.c revision f754dd2bbc98a89a613ab4f76dad5534dc13e929
#
include
"
header.h
"
/* Added comment */
int
main
(
int
argc
,
char
**
argv
) {
printf
(
"Program %s executed with the following arguments:\n"
,
argv
[0]);
for
(
int
i =
1
; i <
argc
; ++i) {
printf
(
"[%s] "
,
argv
[i]);
}
printf
(
"\n"
);
return
EXIT_SUCCESS
;
}