dictionary_hash.h 583 B

123456789101112131415161718192021222324
  1. /* Copyright 2015 Google Inc. All Rights Reserved.
  2. Distributed under MIT license.
  3. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT
  4. */
  5. /* Hash table on the 4-byte prefixes of static dictionary words. */
  6. #ifndef BROTLI_ENC_DICTIONARY_HASH_H_
  7. #define BROTLI_ENC_DICTIONARY_HASH_H_
  8. #include <brotli/types.h>
  9. #if defined(__cplusplus) || defined(c_plusplus)
  10. extern "C" {
  11. #endif
  12. extern const uint16_t kStaticDictionaryHash[32768];
  13. #if defined(__cplusplus) || defined(c_plusplus)
  14. } /* extern "C" */
  15. #endif
  16. #endif /* BROTLI_ENC_DICTIONARY_HASH_H_ */