repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
get_main_worktree(): allow it to be called in the Git directory
[git.git]
/
t
/
t4051
/
appended1.c
blob
a9f56f11db3ea6e291ac0b8ba409b4b90752e84f
1
2
int
appended
(
void
)
// Begin of first part
3
{
4
int
i
;
5
char
*
s
=
"a string"
;
6
7
printf
(
"%s
\n
"
,
s
);
8
9
for
(
i
=
99
;
10
i
>=
0
;
11
i
--) {
12
printf
(
"%d bottles of beer on the wall
\n
"
,
i
);
13
}
14
15
printf
(
"End of first part
\n
"
);