// Oldham, Jeffrey D. // 2000Apr26 // CS1321 // Huffman Codes: Use Code // Decoding #include #include // has EXIT_SUCCESS #include "Huffman.h" int main(void) { if (Huffman::decode(cin, cout)) return EXIT_SUCCESS; else return EXIT_FAILURE; }