| 441 | } |
| 442 | |
| 443 | static void PrintFunction(const Proto* f, int full) |
| 444 | { |
| 445 | int i,n=f->sizep; |
| 446 | PrintHeader(f); |
| 447 | PrintCode(f); |
| 448 | if (full) PrintDebug(f); |
| 449 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 450 | } |
nothing calls this directly
no test coverage detected