blob: 4e6ea2216b47e594db0057746d1db43281b393cf (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef __HUFFMAN_H__
#define __HUFFMAN_H__
#include "PCommon.h"
#include "HTree.h"
HTree *Coder(PriorityList * P);
void HInsert(PriorityList * P, int freq, char *object);
#endif
|