ZSTD_resetDStream() : * return : expected size, aka ZSTD_startingInputLength(). * this function cannot fail */
| 1378 | * return : expected size, aka ZSTD_startingInputLength(). |
| 1379 | * this function cannot fail */ |
| 1380 | size_t ZSTD_resetDStream(ZSTD_DStream* dctx) |
| 1381 | { |
| 1382 | FORWARD_IF_ERROR(ZSTD_DCtx_reset(dctx, ZSTD_reset_session_only), ""); |
| 1383 | return ZSTD_startingInputLength(dctx->format); |
| 1384 | } |
| 1385 | |
| 1386 | |
| 1387 | size_t ZSTD_DCtx_refDDict(ZSTD_DCtx* dctx, const ZSTD_DDict* ddict) |
no test coverage detected