LEFT | RIGHT |
(no file at all) | |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // The gzip package implements reading and writing of | 5 // Package gzip implements reading and writing of gzip format compressed files, |
6 // gzip format compressed files, as specified in RFC 1952. | 6 // as specified in RFC 1952. |
7 package gzip | 7 package gzip |
8 | 8 |
9 import ( | 9 import ( |
10 "bufio" | 10 "bufio" |
11 "compress/flate" | 11 "compress/flate" |
12 "hash" | 12 "hash" |
13 "hash/crc32" | 13 "hash/crc32" |
14 "io" | 14 "io" |
15 "os" | 15 "os" |
16 ) | 16 ) |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 } | 221 } |
222 | 222 |
223 // Yes. Reset and read from it. | 223 // Yes. Reset and read from it. |
224 z.digest.Reset() | 224 z.digest.Reset() |
225 z.size = 0 | 225 z.size = 0 |
226 return z.Read(p) | 226 return z.Read(p) |
227 } | 227 } |
228 | 228 |
229 // Calling Close does not close the wrapped io.Reader originally passed to NewRe
ader. | 229 // Calling Close does not close the wrapped io.Reader originally passed to NewRe
ader. |
230 func (z *Decompressor) Close() os.Error { return z.decompressor.Close() } | 230 func (z *Decompressor) Close() os.Error { return z.decompressor.Close() } |
LEFT | RIGHT |