permit multiline comments and strings in macros
[bpt/coccinelle.git] / demos / type_fields.c
1 void foo(int i)
2 {
3 struct file_operations myfops;
4 foo(myfops.ioctl);
5
6 }
7
8
9
10
11 void foo(int i)
12 {
13 struct dir_operations myfops;
14 foo(myfops.ioctl);
15
16 }
17