21 lines
379 B
C
21 lines
379 B
C
#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
|