]> andersk Git - splint.git/blame - test/for/for.c
noexpand always false.
[splint.git] / test / for / for.c
CommitLineData
23e02467 1void f()
2{
a7b6931c 3int j, i;
23e02467 4char s[11];
5char t[11];
a7b6931c 6for (j = 0; j <= 10; j++)
23e02467 7 {
a7b6931c 8 s[j] = '\0';
23e02467 9 }
10
11for (i = 0; i <= 11; i++)
12 {
13 t[i] = '\0';
14 }
15
16}
This page took 0.062439 seconds and 5 git commands to generate.