permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / if.c
CommitLineData
1be43e12
C
1int main () {
2 f(x);
3 g(x);
4}
5
6int main1 () {
7 f(x);
8 if (x == NULL) {
9 g(x);
10 }
11}
12
13int main1 () {
14 f(x);
15 while (x == NULL) {
16 if (q == 3) {
17 g(x);
18 }
19 }
20 x = 6;
21}
22int main2 () {
23 f(x);
24 if (x == NULL || y == 2) {
25 g(x);
26 }
27}
28