/** ZSTD_findFrameCompressedSize() :
* compatible with legacy mode
- * `src` must point to the start of a ZSTD or ZSTD legacy frame
+ * `src` must point to the start of a ZSTD frame, ZSTD legacy frame, or skippable frame
* `srcSize` must be at least as large as the frame contained
* @return : the compressed size of the frame starting at `src` */
size_t ZSTD_findFrameCompressedSize(const void *src, size_t srcSize)
***************************************/
/*! ZSTD_findFrameCompressedSize() :
- * `src` should point to the start of a ZSTD encoded frame
+ * `src` should point to the start of a ZSTD encoded frame or skippable frame
* `srcSize` must be at least as large as the frame
* @return : the compressed size of the frame pointed to by `src`, suitable to pass to
* `ZSTD_decompress` or similar, or an error code if given invalid input. */