| 2709 | // |
| 2710 | |
| 2711 | inline void outputCode(long long code, long long &c, int &lc, char *&out) { |
| 2712 | outputBits(hufLength(code), hufCode(code), c, lc, out); |
| 2713 | } |
| 2714 | |
| 2715 | inline void sendCode(long long sCode, int runCount, long long runCode, |
| 2716 | long long &c, int &lc, char *&out) { |
no test coverage detected