#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