permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / initial_final.cocci
CommitLineData
b1b2de81
C
1// Options: -dir {directory}
2
3@initialize:python@
4counter = 0
5
6@x@
7position p;
8@@
9
10kmalloc@p(...)
11
12@script:python@
13p<<x.p;
14@@
15
16counter = counter + 1
17
18@finalize:python@
19
20print "counter %d" % (counter)