permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / multi_func1.res
1 int f1() {
2 }
3
4 int f2() {
5 }
6
7 int f3() {
8 bar(7);
9 }
10
11 int f4() {
12 foo(12);
13 }
14
15 int f5() {
16 bar(12);
17 }
18
19 int main() {
20 f1();
21 f2();
22 f3();
23 }
24