| 751 | } |
| 752 | |
| 753 | static void PrintFunction(const Proto* f, int full) |
| 754 | { |
| 755 | int i,n=f->sizep; |
| 756 | PrintHeader(f); |
| 757 | PrintCode(f); |
| 758 | if (full) PrintDebug(f); |
| 759 | for (i=0; i<n; i++) PrintFunction(f->p[i],full); |
| 760 | } |
nothing calls this directly
no test coverage detected