permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / typedef3.res
CommitLineData
34e49164
C
1typedef struct bluecard_info_t {
2 struct pcmcia_device *p_dev;
3} foo;
4
5static void should_work(foo *info)
6{
7 unsigned int iobase = info->p_dev->io.BasePort1;
8}
9
10static void does_work(struct bluecard_info_t *info)
11{
12 unsigned int iobase = info->p_dev->io.BasePort1;
13}