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