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
submodule: rename add_sha1_to_array()
[alt-git.git]
/
t
/
t4051
/
hello.c
blob
63b1a1e4efbb4c5dee315ba56a6ad0658da0a9a5
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