X7ROOT File Manager
Current Path:
/opt/alt/tests/alt-php84-pecl-brotli_0.18.3-2.el8/brotli/c/common
opt
/
alt
/
tests
/
alt-php84-pecl-brotli_0.18.3-2.el8
/
brotli
/
c
/
common
/
📁
..
📁
.libs
📄
constants.c
(619 B)
📄
constants.dep
(371 B)
📄
constants.h
(7.79 KB)
📄
constants.lo
(286 B)
📄
context.c
(7.8 KB)
📄
context.dep
(365 B)
📄
context.h
(4.53 KB)
📄
context.lo
(282 B)
📄
dictionary.c
(1.52 KB)
📄
dictionary.dep
(446 B)
📄
dictionary.h
(1.88 KB)
📄
dictionary.lo
(288 B)
📄
dictionary_inc.h
(459.41 KB)
📄
platform.c
(465 B)
📄
platform.dep
(302 B)
📄
platform.h
(23.2 KB)
📄
platform.lo
(284 B)
📄
shared_dictionary.c
(16.94 KB)
📄
shared_dictionary.dep
(622 B)
📄
shared_dictionary.lo
(302 B)
📄
shared_dictionary_internal.h
(2.35 KB)
📄
static_init.h
(1.95 KB)
📄
transform.c
(10.53 KB)
📄
transform.dep
(371 B)
📄
transform.h
(3.11 KB)
📄
transform.lo
(286 B)
📄
version.h
(1.68 KB)
Editing: version.h
/* Copyright 2016 Google Inc. All Rights Reserved. Distributed under MIT license. See file LICENSE for detail or copy at https://opensource.org/licenses/MIT */ /* Version definition. */ #ifndef BROTLI_COMMON_VERSION_H_ #define BROTLI_COMMON_VERSION_H_ /* Compose 3 components into a single number. In a hexadecimal representation B and C components occupy exactly 3 digits. */ #define BROTLI_MAKE_HEX_VERSION(A, B, C) ((A << 24) | (B << 12) | C) /* Those macros should only be used when library is compiled together with the client. If library is dynamically linked, use BrotliDecoderVersion and BrotliEncoderVersion methods. */ #define BROTLI_VERSION_MAJOR 1 #define BROTLI_VERSION_MINOR 2 #define BROTLI_VERSION_PATCH 0 #define BROTLI_VERSION BROTLI_MAKE_HEX_VERSION( \ BROTLI_VERSION_MAJOR, BROTLI_VERSION_MINOR, BROTLI_VERSION_PATCH) /* This macro is used by build system to produce Libtool-friendly soname. See https://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html Version evolution rules: - interfaces added (or change is compatible) -> current+1:0:age+1 - interfaces removed (or changed is incompatible) -> current+1:0:0 - interfaces not changed -> current:revision+1:age */ #define BROTLI_ABI_CURRENT 3 #define BROTLI_ABI_REVISION 0 #define BROTLI_ABI_AGE 2 #if BROTLI_VERSION_MAJOR != (BROTLI_ABI_CURRENT - BROTLI_ABI_AGE) #error ABI/API version inconsistency #endif #if BROTLI_VERSION_MINOR != BROTLI_ABI_AGE #error ABI/API version inconsistency #endif #if BROTLI_VERSION_PATCH != BROTLI_ABI_REVISION #error ABI/API version inconsistency #endif #endif /* BROTLI_COMMON_VERSION_H_ */
Upload File
Create Folder