This repository has been archived on 2022-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Huffman/huffman.h

16 lines
354 B
C

#ifndef _GLOBAL_HUFFMAN_H
#define _GLOBAL_HUFFMAN_H 1
// On inclus nos dépendances que tous le programme utilisera
#include <stdio.h>
#include <string.h>
// Structure du noeud
typedef struct noeud_huffman {
char lettre;
int frequence;
struct noeud_huffman *gauche;
struct noeud_huffman *droite;
} *Noeud;
#endif // <huffman.h> inclus