huffman.h

来自「Huffman 压缩/解压算法的ANSI C实现 This archive c」· C头文件 代码 · 共 61 行

H
61
字号
/****************************************************************************                        Huffman Library Header File**   File    : huffman.h*   Purpose : Provide header file for programs linking to Huffman library*             functions.*   Author  : Michael Dipperstein*   Date    : February 25, 2004******************************************************************************   UPDATES**   $Id: huffman.h,v 1.2 2004/06/15 13:37:59 michael Exp $*   $Log: huffman.h,v $*   Revision 1.2  2004/06/15 13:37:59  michael*   Incorporate changes in chuffman.c.**   Revision 1.1  2004/02/26 04:58:22  michael*   Initial revision.  Headers for encode/decode functions.******************************************************************************** Huffman: An ANSI C Huffman Encoding/Decoding Routine* Copyright (C) 2004 by Michael Dipperstein (mdipper@cs.ucsb.edu)** This library is free software; you can redistribute it and/or* modify it under the terms of the GNU Lesser General Public* License as published by the Free Software Foundation; either* version 2.1 of the License, or (at your option) any later version.** This library is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU* Lesser General Public License for more details.** You should have received a copy of the GNU Lesser General Public* License along with this library; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA****************************************************************************/#ifndef _HUFFMAN_H_#define _HUFFMAN_H_/****************************************************************************                               PROTOTYPES***************************************************************************//* traditional codes */int HuffmanShowTree(char *inFile, char *outFile);       /* dump codes */int HuffmanEncodeFile(char *inFile, char *outFile);     /* encode file */int HuffmanDecodeFile(char *inFile, char *outFile);     /* decode file *//* canonical code */int CHuffmanShowTree(char *inFile, char *outFile);       /* dump codes */int CHuffmanEncodeFile(char *inFile, char *outFile);     /* encode file */int CHuffmanDecodeFile(char *inFile, char *outFile);     /* decode file */#endif /* _HUFFMAN_H_ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?