keep the "lorem ipsum" topic of the example string
but make it compressible
This commit is contained in:
parent
23bd36918e
commit
f1e8e806e0
@ -38,7 +38,7 @@ int main(void) {
|
|||||||
|
|
||||||
/* Compression */
|
/* Compression */
|
||||||
// We'll store some text into a variable pointed to by *src to be compressed later.
|
// We'll store some text into a variable pointed to by *src to be compressed later.
|
||||||
const char* const src = "Lorem ipsum dolor sit amet, hhhhhhhhhhhhhhhhhhhhhhh";
|
const char* const src = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor site amat.";
|
||||||
// The compression function needs to know how many bytes exist. Since we're using a string, we can use strlen() + 1 (for \0).
|
// The compression function needs to know how many bytes exist. Since we're using a string, we can use strlen() + 1 (for \0).
|
||||||
const int src_size = (int)(strlen(src) + 1);
|
const int src_size = (int)(strlen(src) + 1);
|
||||||
// LZ4 provides a function that will tell you the maximum size of compressed output based on input data via LZ4_compressBound().
|
// LZ4 provides a function that will tell you the maximum size of compressed output based on input data via LZ4_compressBound().
|
||||||
|
Loading…
Reference in New Issue
Block a user