]> andersk Git - splint.git/blob - test/temp/case.c
Removed stray files in test
[splint.git] / test / temp / case.c
1 int f (int x)
2 {
3   int p;
4
5   switch (x)
6     {
7     case 1:
8       p = 2; break;
9     case 2:
10       p = 3; break;
11     default:
12       return 0;
13     }
14
15   return p;
16 }
This page took 0.03672 seconds and 5 git commands to generate.