| 715 | } |
| 716 | |
| 717 | static void PrintFunction(const Proto* f, int full) |
| 718 | { |
| 719 | int i,n=f->sizep; |
| 720 | PrintHeader(f); |
| 721 | PrintCode(f); |
| 722 | if (full) PrintDebug(f); |
| 723 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 724 | } |
nothing calls this directly
no test coverage detected