summaryrefslogtreecommitdiffstats
path: root/decoder.h
diff options
context:
space:
mode:
Diffstat (limited to 'decoder.h')
-rw-r--r--decoder.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/decoder.h b/decoder.h
index 19e4c6a..833701b 100644
--- a/decoder.h
+++ b/decoder.h
@@ -256,14 +256,14 @@ struct LZ_decoder
void LZd_flush_data( struct LZ_decoder * const d );
-static inline uint8_t LZd_get_prev_byte( const struct LZ_decoder * const d )
+static inline uint8_t LZd_peek_prev( const struct LZ_decoder * const d )
{
const int i = ( ( d->pos > 0 ) ? d->pos : d->buffer_size ) - 1;
return d->buffer[i];
}
-static inline uint8_t LZd_get_byte( const struct LZ_decoder * const d,
- const int distance )
+static inline uint8_t LZd_peek( const struct LZ_decoder * const d,
+ const int distance )
{
int i = d->pos - distance - 1;
if( i < 0 ) i += d->buffer_size;