Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/brotli/c/enc/dictionary_hash.h @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 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_ */ |
