blob: aacbf79f0eb00e9486c926231ebe27d641d10021 (
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
|