| 7390 | } |
| 7391 | |
| 7392 | void ZSTD_free(void* ptr, ZSTD_customMem customMem) |
| 7393 | { |
| 7394 | if (ptr!=NULL) { |
| 7395 | if (customMem.customFree) |
| 7396 | customMem.customFree(customMem.opaque, ptr); |
| 7397 | else |
| 7398 | free(ptr); |
| 7399 | } |
| 7400 | } |
| 7401 | /**** ended inlining common/zstd_common.c ****/ |
| 7402 | |
| 7403 | /**** start inlining compress/fse_compress.c ****/ |
no test coverage detected