1
0
mirror of https://github.com/facebook/zstd.git synced 2025-11-09 17:41:01 +03:00

Minor: documented sizes smaller

This commit is contained in:
Carl Woffenden
2019-09-02 18:15:31 +02:00
parent 8ac29cc825
commit 88975e8c25

View File

@@ -3050,8 +3050,8 @@ size_t ZSTD_decompress(void* dst, size_t dstLen, const void* src, size_t srcLen)
* compare the resulting bytes with \c #rawDxt1. * compare the resulting bytes with \c #rawDxt1.
* \n * \n
* As a (naive) comparison, removing Zstd and building with "-Os -g0 simple.c" * As a (naive) comparison, removing Zstd and building with "-Os -g0 simple.c"
* results in a 48kB binary (macOS 10.14, Clang 10); re-adding Zstd increases * results in a 44kB binary (macOS 10.14, Clang 10); re-adding Zstd increases
* the binary by 67kB (after calling \c strip). * the binary by 56kB (after calling \c strip).
*/ */
int main() { int main() {
size_t size = ZSTD_decompress(dstDxt1, sizeof dstDxt1, srcZstd, sizeof srcZstd); size_t size = ZSTD_decompress(dstDxt1, sizeof dstDxt1, srcZstd, sizeof srcZstd);