Release coccinelle-0.1
[bpt/coccinelle.git] / tests / scripting / script8.c
1 void foo() {
2 int z[10];
3
4 z[2] = 34;
5 }
6
7 int main() {
8 int buf[20], foo[30];
9 int i;
10
11 for (i = 0; i <= 20; ++i) {
12 buf[i] = i;
13 foo[i] = i;
14 }
15
16 for (i = 0; i <= 20; ++i)
17 printf("%d: %d\n", i, buf[i]);
18 }