]> andersk Git - splint.git/blob - test/simplebufferConstraintTests/test3.c
Changed to used /\ and requires instead of bufferConstraint
[splint.git] / test / simplebufferConstraintTests / test3.c
1
2 void t()
3 {
4   char g [100];
5   char j [23];
6   j[22] = 'd';  /*safe */
7   g[0] = 'd';  /*   safe */
8   g[67] = 'f;'; /*     safe */
9   g[101] = 'g'; /*    unsafe */
10   g[100] = 'f'; /*    unsafe */
11 }
This page took 0.04653 seconds and 5 git commands to generate.