]> git.sur5r.net Git - cc65/blobdiff - include/lz4.h
Edit comment style, add second const
[cc65] / include / lz4.h
index d6bf1b17c911222f551420ca25b1e3d49fb99812..fd11c3e2a3c468fd1f250ba2cc50d8938150fd87 100644 (file)
 #ifndef _LZ4_H
 #define _LZ4_H
 
-void __fastcall__ decompress_lz4 (const unsigned char* src, unsigned char* dst,
+void __fastcall__ decompress_lz4 (const unsigned char* src, unsigned char* const dst,
                                   const unsigned short uncompressed_size);
-/*
-   Decompresses the source buffer into the destination buffer.
-   The size of the decompressed data must be known in advance, LZ4
-   does not include any terminator in-stream.
+/* Decompresses the source buffer into the destination buffer.
+** The size of the decompressed data must be known in advance, LZ4
+** does not include any terminator in-stream.
 */
 
 /* end of lz4.h */