Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / arraysz.cocci
CommitLineData
34e49164
C
1@ disable all @
2type T;
3const T[] E;
4@@
5
6- (sizeof(E)/sizeof(T))
7+ ARRAY_SIZE(E)