projects
/
git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge branch 'sb/pack-protocol-doc-nak' into maint
[git]
/
t
/
t4051
/
hello.c
1
2
static void hello(void) // Begin of hello
3
{
4
/*
5
* Classic.
6
*/
7
putchar('H');
8
putchar('e');
9
putchar('l');
10
putchar('l');
11
putchar('o');
12
putchar(' ');
13
/* delete me from hello */
14
putchar('w');
15
putchar('o');
16
putchar('r');
17
putchar('l');
18
putchar('d');
19
putchar('.');
20
putchar('\n');
21
} // End of hello