summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2022-07-29 16:57:36 (GMT)
committerYann Collet <cyan@fb.com>2022-07-29 17:22:59 (GMT)
commit4f4d09a0d1604da4a93d05716e586d73231c2e63 (patch)
tree0cfdde4daa06923e62f050802434f1e5f4b7fe98 /lib
parentcd96e3e7a504311cd229cf536ede86e5febec9a7 (diff)
downloadlz4-4f4d09a0d1604da4a93d05716e586d73231c2e63.zip
lz4-4f4d09a0d1604da4a93d05716e586d73231c2e63.tar.gz
lz4-4f4d09a0d1604da4a93d05716e586d73231c2e63.tar.bz2
implement decoder-only benchmark mode
requires an LZ4 Frame as input
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.h2
-rw-r--r--lib/lz4frame.h12
2 files changed, 7 insertions, 7 deletions
diff --git a/lib/lz4.h b/lib/lz4.h
index 383dc07..fee8890 100644
--- a/lib/lz4.h
+++ b/lib/lz4.h
@@ -433,7 +433,7 @@ LZ4_decompress_safe_continue (LZ4_streamDecode_t* LZ4_streamDecode,
*/
LZ4LIB_API int
LZ4_decompress_safe_usingDict(const char* src, char* dst,
- int srcSize, int dstCapcity,
+ int srcSize, int dstCapacity,
const char* dictStart, int dictSize);
LZ4LIB_API int
diff --git a/lib/lz4frame.h b/lib/lz4frame.h
index c75fd4d..1c2d0dd 100644
--- a/lib/lz4frame.h
+++ b/lib/lz4frame.h
@@ -54,12 +54,12 @@ extern "C" {
/**
- Introduction
-
- lz4frame.h implements LZ4 frame specification: see doc/lz4_Frame_format.md .
- LZ4 Frames are interoperable on any systems.
- The are compatible with `lz4` CLI.
-*/
+ * Introduction
+ *
+ * lz4frame.h implements LZ4 frame specification: see doc/lz4_Frame_format.md .
+ * LZ4 Frames are compatible with `lz4` CLI,
+ * and designed to be interoperable with any system.
+**/
/*-***************************************************************
* Compiler specifics