repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
setup: fix leaking repository format
[alt-git.git]
/
t
/
t4051
/
hello.c
blob
73e767e1783d8ab97d7a45297a173b1bed9f00a2
1
2
/*
3
* Hello comment.
4
*/
5
static void
hello
(
void
)
// Begin of hello
6
{
7
/*
8
* Classic.
9
*/
10
putchar
(
'H'
);
11
putchar
(
'e'
);
12
putchar
(
'l'
);
13
putchar
(
'l'
);
14
putchar
(
'o'
);
15
putchar
(
' '
);
16
/* delete me from hello */
17
putchar
(
'w'
);
18
putchar
(
'o'
);
19
putchar
(
'r'
);
20
putchar
(
'l'
);
21
putchar
(
'd'
);
22
putchar
(
'.'
);
23
putchar
(
'
\n
'
);
24
}
// End of hello