Updated comments
authorYann Collet <yann.collet.73@gmail.com>
Sat, 13 Dec 2014 16:08:51 +0000 (17:08 +0100)
committerYann Collet <yann.collet.73@gmail.com>
Sat, 13 Dec 2014 16:08:51 +0000 (17:08 +0100)
lib/lz4frame.h

index b2a7f40..d73e3e2 100644 (file)
 extern "C" {
 #endif
 
-/****************************************
-   Note : experimental API.
-   Not yet integrated within liblz4
-****************************************/
-
 /**************************************
    Includes
 **************************************/
@@ -68,7 +63,6 @@ const char* LZ4F_getErrorName(LZ4F_errorCode_t code);   /* return error code str
 /**************************************
  * Frame compression types
  * ************************************/
-
 typedef enum { LZ4F_default=0, max64KB=4, max256KB=5, max1MB=6, max4MB=7 } blockSizeID_t;
 typedef enum { blockLinked=0, blockIndependent} blockMode_t;
 typedef enum { noContentChecksum=0, contentChecksumEnabled } contentChecksum_t;
@@ -88,7 +82,6 @@ typedef struct {
 } LZ4F_preferences_t;
 
 
-
 /***********************************
  * Simple compression function
  * *********************************/
@@ -110,7 +103,6 @@ size_t LZ4F_compressFrame(void* dstBuffer, size_t dstMaxSize, const void* srcBuf
 /**********************************
  * Advanced compression functions
  * ********************************/
-
 typedef void* LZ4F_compressionContext_t;
 
 typedef struct {