comparison mupdf-source/thirdparty/brotli/c/enc/dictionary_hash.h @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
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)
15 extern "C" {
16 #endif
17
18 extern const uint16_t kStaticDictionaryHashWords[32768];
19 extern 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_ */