From eb302fe3ced45eaff8e8cbbe785de335f3b69569 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Sat, 18 Dec 2021 11:54:19 +0100 Subject: [PATCH] Import huffman.h --- compression.h | 8 ++++++++ decompression.h | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/compression.h b/compression.h index e69de29..f3a4b9f 100644 --- a/compression.h +++ b/compression.h @@ -0,0 +1,8 @@ +#ifndef _COMPRESSION_HUFFMAN_H +#define _COMPRESSION_HUFFMAN_H 1 + +// On inclus le fichier global +#include "huffman.h" + + +#endif // inclus diff --git a/decompression.h b/decompression.h index e69de29..b9754ed 100644 --- a/decompression.h +++ b/decompression.h @@ -0,0 +1,8 @@ +#ifndef _DECOMPRESSION_HUFFMAN_H +#define _DECOMPRESSION_HUFFMAN_H 1 + +// On inclus le fichier global +#include "huffman.h" + + +#endif // inclus