diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 07:48:04 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 07:48:04 +0000 |
commit | 5682f60e459bbb6a0d6174377db327fa5b63710b (patch) | |
tree | 94ea4904226e2a6b93fda7a50c96659f37f34458 /decoder.h | |
parent | Adding debian version 1.7-3. (diff) | |
download | lzip-5682f60e459bbb6a0d6174377db327fa5b63710b.tar.xz lzip-5682f60e459bbb6a0d6174377db327fa5b63710b.zip |
Merging upstream version 1.8.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'decoder.h')
-rw-r--r-- | decoder.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -63,6 +63,7 @@ public: ibuf( buf ) { for( int i = 0; i < 5; ++i ) code = (code << 8) | get_byte(); } + bool code_is_zero() const throw() { return ( code == 0 ); } bool finished() const throw() { return ibuf.finished(); } long long member_position() const throw() { return member_pos; } |