Release coccinelle-0.1
[bpt/coccinelle.git] / tests / remstruct.c
1 static struct irqchip mpuio_irq_chip = {
2 .ack = mpuio_ack_irq,
3 .mask = mpuio_mask_irq,
4 .unmask = mpuio_unmask_irq
5 };
6
7 static struct irqchip xxx = {
8 .a = 12,
9 .b = 15,
10 };
11
12 int hello ( String input )
13 {
14 String input = input.lowercase();
15 printf(input);
16 }