permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / addif.res
1 #ifdef FOO
2 /* some comment */
3 int xxx() {
4 /* a comment by itself */
5 return 12; /* another comment */ }
6 #endif
7 static int foo() {
8 return 12;
9 }
10
11 #ifdef FOO
12 /* some comment */
13 int xxx() {
14 /* a comment by itself */
15 return 12; /* another comment */ }
16 #endif
17 static int bar() {
18 return 12;
19 }