]> andersk Git - splint.git/blob - test/tests2.2a/duff.c
Remove unused cpplib_createDefinition.
[splint.git] / test / tests2.2a / duff.c
1 void copy ( to, from, count )
2      char* to;
3      char* from; 
4 {
5   int n=(count+7)/8;
6   switch (count%8) do {
7   case 0: *to = *from++;
8   case 7: *to = *from++;
9   case 6: *to = *from++;
10   case 5: *to = *from++;
11   case 4: *to = *from++;
12   case 3: *to = *from++;
13   case 2: *to = *from++;
14   case 1: *to = *from++;
15   } while (--n>0);
16 }
17
This page took 0.045407 seconds and 5 git commands to generate.