| 724 | } |
| 725 | |
| 726 | static void PrintFunction(const Proto* f, int full) |
| 727 | { |
| 728 | int i,n=f->sizep; |
| 729 | PrintHeader(f); |
| 730 | PrintCode(f); |
| 731 | if (full) PrintDebug(f); |
| 732 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 733 | } |
nothing calls this directly
no test coverage detected