Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / array.cocci
1 @@
2 type T;
3 T[] id;
4 @@
5
6 - sizeof(id) / sizeof(T)
7 + ARRAY_SIZE(id)