The R Project SVN R

Rev

Rev 17798 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 17798 Rev 18679
Line 1... Line 1...
1
/* trees.c -- output deflated data using Huffman coding
1
/* trees.c -- output deflated data using Huffman coding
2
 * Copyright (C) 1995-1998 Jean-loup Gailly
2
 * Copyright (C) 1995-2002 Jean-loup Gailly
3
 * For conditions of distribution and use, see copyright notice in zlib.h 
3
 * For conditions of distribution and use, see copyright notice in zlib.h 
4
 */
4
 */
5
 
5
 
6
/*
6
/*
7
 *  ALGORITHM
7
 *  ALGORITHM
Line 27... Line 27...
27
 *      Sedgewick, R.
27
 *      Sedgewick, R.
28
 *          Algorithms, p290.
28
 *          Algorithms, p290.
29
 *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
29
 *          Addison-Wesley, 1983. ISBN 0-201-06672-6.
30
 */
30
 */
31
 
31
 
32
/* @(#) $Id: trees.c,v 1.1 2002/01/15 15:30:42 ripley Exp $ */
32
/* @(#) $Id: trees.c,v 1.2 2002/03/12 20:50:50 ripley Exp $ */
33
 
33
 
34
/* #define GEN_TREES_H */
34
/* #define GEN_TREES_H */
35
 
35
 
36
#include "deflate.h"
36
#include "deflate.h"
37
 
37