From 3e2e5bf4eaf65bbdaffd481107f7978e88c69a8f Mon Sep 17 00:00:00 2001 From: Yevhen Kozirovskyi Date: Tue, 28 Jan 2025 19:05:01 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20sk1/compressor.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sk1/compressor.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sk1/compressor.c b/sk1/compressor.c index 65328c6..dab8ad4 100644 --- a/sk1/compressor.c +++ b/sk1/compressor.c @@ -5,7 +5,9 @@ #define BUFFER_SIZE 4096 #define MAX_SYMBOLS 257 - +#define WINDOW_CAPACITY 4096 +#define MAX_MATCH_LENGTH 15 +#define BUFFER_CAPACITY 4096 // Макрос для обмена двух узлов #define SWAP_NODES(a, b) { Node* temp = a; a = b; b = temp; }