repo.or.cz
/
ironout.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
block: don't put spaces around :
[ironout.git]
/
tests
/
test-files
blob
1728d8bc602ee26f90dc3d81b031727cacee5586
1
: # two separate files
2
----------------------
3
: write test1.c
4
int var;
5
: write test2.c
6
int var;
7
: ironout find test1.c 4
8
test1.c 4 7
9
: ironout find test2.c 4
10
test2.c 4 7
11
: # using extern
12
----------------
13
: write test1.c
14
void f()
15
{
16
}
17
: write test2.c
18
void g()
19
{
20
f();
21
}
22
: ironout find test1.c 5
23
test1.c 5 6
24
test2.c 12 13
25
: ironout find test2.c 12
26
test1.c 5 6
27
test2.c 12 13