coccinelle release 0.2.5
[bpt/coccinelle.git] / demos / first.cocci
CommitLineData
7f004419
C
1@initialize:python@
2
3first = 0
4
5@first_fct@
6type T;
7identifier f;
8position p;
9@@
10
11T f@p (...) {...}
12
13@script:python@
14p << first_fct.p;
15@@
16
17if p[0].line > first && first == 0:
18 first = p[0].line
19else:
20 cocci.include_match(false)
21
22@@
23type T;
24identifier f;
25position first_fct.p;
26@@
27
28+#include <foo.h>
29
30T f@p (...) {...}