]> Cypherpunks repositories - gostls13.git/commit
compress/bzip2: add package.
authorAdam Langley <agl@golang.org>
Wed, 23 Feb 2011 15:23:28 +0000 (10:23 -0500)
committerAdam Langley <agl@golang.org>
Wed, 23 Feb 2011 15:23:28 +0000 (10:23 -0500)
commitbf6939829d84e8cbe7469c1664ec8dc4038a21b9
treed0125b4a49f721ae9c4d57172093a573146b3f8f
parent658447ab6643e95ccb912ab033e65edcd902e419
compress/bzip2: add package.

This code implements bzip2 decompression only.

R=bradfitzgo, r2, nigeltao, rsc
CC=golang-dev
https://golang.org/cl/4176051
src/pkg/Makefile
src/pkg/compress/bzip2/Makefile [new file with mode: 0644]
src/pkg/compress/bzip2/bit_reader.go [new file with mode: 0644]
src/pkg/compress/bzip2/bzip2.go [new file with mode: 0644]
src/pkg/compress/bzip2/bzip2_test.go [new file with mode: 0644]
src/pkg/compress/bzip2/huffman.go [new file with mode: 0644]
src/pkg/compress/bzip2/move_to_front.go [new file with mode: 0644]