permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / janitorings / bad_zero-orig.cocci
1
2 @@
3 expression *E;
4 @@
5
6 E ==
7 - 0
8 + NULL
9
10 @@
11 expression *E;
12 @@
13
14 - 0
15 + NULL
16 == E
17
18 @@
19 expression *E;
20 @@
21
22 E !=
23 - 0
24 + NULL
25
26 @@
27 expression *E;
28 @@
29
30 - 0
31 + NULL
32 != E
33