| 423 | } |
| 424 | |
| 425 | static void PrintFunction(const Proto* f, int full) |
| 426 | { |
| 427 | int i,n=f->sizep; |
| 428 | PrintHeader(f); |
| 429 | PrintCode(f); |
| 430 | if (full) PrintDebug(f); |
| 431 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 432 | } |
nothing calls this directly
no test coverage detected