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