changed the input text to something more compression friendly
authorHamid Zare <dellydela@gmail.com>
Thu, 11 Jul 2019 21:34:52 +0000 (14:34 -0700)
committerHamid Zare <dellydela@gmail.com>
Thu, 11 Jul 2019 21:35:51 +0000 (14:35 -0700)
examples/simple_buffer.c

index 027fc85..62409d0 100644 (file)
@@ -38,7 +38,7 @@ int main(void) {
 
   /* Compression */
   // 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, consectetur adipiscing elit.";
+  const char* const src = "Lorem ipsum dolor sit amet, hhhhhhhhhhhhhhhhhhhhhhh";
   // 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);
   // LZ4 provides a function that will tell you the maximum size of compressed output based on input data via LZ4_compressBound().