| 96 | } |
| 97 | |
| 98 | void MPPC_InitDecompressionHistory(char *history) |
| 99 | { |
| 100 | struct MPPC_decomp_state *state = (struct MPPC_decomp_state*)history; |
| 101 | |
| 102 | bzero(history, sizeof(struct MPPC_decomp_state)); |
| 103 | state->histptr = MPPE_HIST_LEN; |
| 104 | } |
| 105 | |
| 106 | int MPPC_Decompress(u_char **src, u_char **dst, u_long *srcCnt, u_long *dstCnt, char *history, int flags) |
| 107 | { |
no test coverage detected