/* Copyright 2013 Google Inc. All Rights Reserved. Distributed under MIT license. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT */ /* Bit reading helpers */ #include "bit_reader.h" #include <brotli/types.h> #include "../common/platform.h" #if defined(__cplusplus) || defined(c_plusplus) extern "C" { #endif const brotli_reg_t kBrotliBitMask[33] = …; void BrotliInitBitReader(BrotliBitReader* const br) { … } BROTLI_BOOL BrotliWarmupBitReader(BrotliBitReader* const br) { … } BROTLI_BOOL BrotliSafeReadBits32Slow(BrotliBitReader* const br, brotli_reg_t n_bits, brotli_reg_t* val) { … } #if defined(__cplusplus) || defined(c_plusplus) } /* extern "C" */ #endif