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 kStaticDictionaryHash[32768];
19
20#if defined(__cplusplus) || defined(c_plusplus)
21} /* extern "C" */
22#endif
23
24#endif /* BROTLI_ENC_DICTIONARY_HASH_H_ */
25