]> andersk Git - splint.git/blob - test/for/for.c
*** empty log message ***
[splint.git] / test / for / for.c
1 void f()
2 {
3 int j, i;
4 char s[11];
5 char t[11];
6 for (j = 0; j <= 10; j++)
7   {
8     s[j] = '\0';
9   }
10
11 for (i = 0; i <= 11; i++)
12   {
13     t[i] = '\0';
14   }
15
16 }
This page took 0.075759 seconds and 5 git commands to generate.