permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / bitfield.c
1 struct dvb_frontend {
2 struct dvb_frontend_ops* ops;
3 };
4
5 typedef struct {
6 u8 RESET :1;
7 u8 IDLE :1;
8 u8 STOP :1;
9 u8 HIRQ0 :1;
10 u8 HIRQ1 :1;
11 u8 na0 :1;
12 u8 HABAV :1;
13 u8 na1 :1;
14
15 } bcm3510_register_value;