Declare basic function for the huffman tree

This commit is contained in:
Mylloon 2021-12-18 13:50:56 +01:00
parent 493191abe5
commit 2e95c244b6

21
arbre.h Normal file
View file

@ -0,0 +1,21 @@
#ifndef _ARBRE_HUFFMAN_H_
#define _ARBRE_HUFFMAN_H_ 1
#include <stdio.h>
#include <stdlib.h>
#include "liste.h"
// Définition de l'Arbre
typedef Cellule *Arbre;
// Convertis une liste en Arbre
void convertisseurListeEnArbre(Liste *liste);
// Encode un fichier
void encode(FILE *entree, FILE *sortie);
// Décode un fichier
void decode(FILE *entree, FILE *sortie);
#endif