repo.or.cz
/
tor.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'fix-changelogs' into 'main'
[tor.git]
/
scripts
/
maint
/
practracker
/
testdata
/
a.c
blob
3c338ab40d57584bae5f1feec2cf39106d57367c
1
2
#include
"one.h"
3
#include
"two.h"
4
#incldue
"three.h"
5
6
# include
"permitted.h"
7
8
#include
"ext/good.c"
9
#include
"bad.c"
10
11
int
12
i_am_a_function
(
void
)
13
{
14
call
();
15
call
();
16
/* comment
17
18
another */
19
20
return
3
;
21
}
22
23
# include
"five.h"
24
25
long
26
another_function
(
long
x
,
27
long
y
)
28
{
29
int
abcd
;
30
31
abcd
=
x
+
y
;
32
abcd
*=
abcd
;
33
34
/* comment here */
35
36
return
abcd
+
37
abcd
+
38
abcd
;
39
}
40
41
/* And a comment to grow! */