From: Lauri Kasanen Date: Fri, 9 Jun 2017 07:35:16 +0000 (+0300) Subject: Edit comment style, add second const X-Git-Tag: V2.17~124^2~5 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=e85796e028b152c68c7451c4bc73a06aa6be3749;p=cc65 Edit comment style, add second const --- diff --git a/include/lz4.h b/include/lz4.h index d6bf1b17c..fd11c3e2a 100644 --- a/include/lz4.h +++ b/include/lz4.h @@ -32,12 +32,11 @@ #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 */