Пакет: zlib-devel
- Версия
- 1.3.1
- Релиз
- 1.niceos5
- Архитектура
- x86_64
- Хэш GOST
- fb3b68df1335b1a5b1671630a6768560726706259199b1fd3e3bff36d08605e0
- Хэш MD5
- ff362ff3329a2b3c3f3224d553f91215
- Хэш SHA256
- cc2d6552d3b05f6bbc3afbe647edede81680c713af6d069195ec6e1f340e5ea2
- Лицензия
- Zlib
- Дата сборки
- 12 мая 2025 г.
- Размер
- 265,974 МиБ
- Совместимые ОС
- rpm файл:
- zlib-devel-1.3.1-1.niceos5.x86_64.rpm
Основной пакет
Этот подпакет входит в состав основного пакета: zlib
Зависимости
Имя | Тип | Версия |
---|---|---|
zlib | runtime | - |
Граф зависимостей
Файлы пакета
-
-
- /usr/include/zconf.h 16,078 КиБ
- /usr/include/zlib.h 94,56 КиБ
-
-
- /usr/lib/libz.a 153,035 КиБ
- /usr/lib/libz.so 13 Б
-
- /usr/lib/pkgconfig/zlib.pc 252 Б
-
-
-
-
-
- /usr/share/man/man3/zlib.3.gz 2,042 КиБ
-
-
-
-
Документация (man-страницы)
ZLIB(3) Функции библиотеки ZLIB(3) NAME zlib - библиотека сжатия/распаковки данных SYNOPSIS [см. zlib.h для полного описания] DESCRIPTION Библиотека zlib — это универсальная библиотека сжатия данных. Код является потокобезопасным, при условии, что стандартные функции библиотеки, используемые в ней, являются потокобезопасными, такие как процедуры выделения памяти. Она предоставляет функции сжатия и распаковки данных в памяти, включая проверки целостности несжатых данных. Эта версия библиотеки поддерживает только один метод сжатия (deflation), но в будущем могут быть добавлены другие алгоритмы с тем же интерфейсом потока. Сжатие может выполняться в один шаг, если буферы достаточно велики, или может выполняться путём повторных вызовов функции сжатия. В последнем случае приложение должно предоставлять дополнительные входные данные и/или потреблять вывод (предоставляя дополнительное пространство для вывода) перед каждым вызовом. Библиотека также поддерживает чтение и запись файлов в формате gzip(1) (.gz) с интерфейсом, аналогичным stdio. Библиотека не устанавливает никаких обработчиков сигналов. Декодер проверяет согласованность сжатых данных, поэтому библиотека никогда не должна аварийно завершаться, даже в случае повреждённого входа. Все функции библиотеки сжатия документированы в файле zlib.h. Исходный дистрибутив включает примеры использования библиотеки в файлах test/example.c и test/minigzip.c, а также другие примеры в каталоге examples/. Изменения в этой версии документированы в файле ChangeLog, который accompanies the source. zlib встроена во многие языки и операционные системы, включая, но не ограничиваясь, Java, Python, .NET, PHP, Perl, Ruby, Swift и Go. Экспериментальный пакет для чтения и записи файлов в формате .zip, написанный на основе zlib Gilles Vollant (info@winimage.com), доступен по адресу: http://www.winimage.com/zLibDll/minizip.html и также в каталоге contrib/minizip основного дистрибутива исходного кода zlib. SEE ALSO Веб-сайт zlib можно найти по адресу: http://zlib.net/ Формат данных, используемый библиотекой zlib, описан в документах RFC (Request for Comments) 1950–1952 в файлах: http://tools.ietf.org/html/rfc1950 (для формата заголовка и трейлера zlib) http://tools.ietf.org/html/rfc1951 (для формата сжатых данных deflate) http://tools.ietf.org/html/rfc1952 (для формата заголовка и трейлера gzip) Mark Nelson написал статью о zlib для январского номера 1997 года журнала Dr. Dobb's Journal; копия статьи доступна по адресу: http://marknelson.us/1997/01/01/zlib-engine/ REPORTING PROBLEMS Перед сообщением о проблеме проверьте веб-сайт zlib, чтобы убедиться, что у вас установлена последняя версия zlib; в противном случае, получите последнюю версию и проверьте, существует ли проблема. Пожалуйста, прочитайте zlib FAQ по адресу: http://zlib.net/zlib_faq.html перед тем, как задавать вопросы. Отправляйте вопросы и/или комментарии по адресу zlib@gzip.org, или (для версии Windows DLL) по адресу Gilles Vollant (info@winimage.com). AUTHORS AND LICENSE Version 1.3.1 Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu The deflate format used by zlib was defined by Phil Katz. The deflate and zlib specifications were written by L. Peter Deutsch. Thanks to all the people who reported problems and suggested various improvements in zlib; who are too numerous to cite here. UNIX manual page by R. P. C. Rodgers, U.S. National Library of Medicine (rodgers@nlm.nih.gov). 22 Jan 2024 ZLIB(3)
ZLIB(3) Library Functions Manual ZLIB(3) NAME zlib - compression/decompression library SYNOPSIS [see zlib.h for full description] DESCRIPTION The zlib library is a general purpose data compression library. The code is thread safe, assuming that the standard library functions used are thread safe, such as memory allocation routines. It provides in- memory compression and decompression functions, including integrity checks of the uncompressed data. This version of the library supports only one compression method (deflation) but other algorithms may be added later with the same stream interface. Compression can be done in a single step if the buffers are large enough or can be done by repeated calls of the compression function. In the latter case, the application must provide more input and/or con‐ sume the output (providing more output space) before each call. The library also supports reading and writing files in gzip(1) (.gz) format with an interface similar to that of stdio. The library does not install any signal handler. The decoder checks the consistency of the compressed data, so the library should never crash even in the case of corrupted input. All functions of the compression library are documented in the file zlib.h. The distribution source includes examples of use of the li‐ brary in the files test/example.c and test/minigzip.c, as well as other examples in the examples/ directory. Changes to this version are documented in the file ChangeLog that ac‐ companies the source. zlib is built in to many languages and operating systems, including but not limited to Java, Python, .NET, PHP, Perl, Ruby, Swift, and Go. An experimental package to read and write files in the .zip format, written on top of zlib by Gilles Vollant (info@winimage.com), is avail‐ able at: http://www.winimage.com/zLibDll/minizip.html and also in the contrib/minizip directory of the main zlib source distribution. SEE ALSO The zlib web site can be found at: http://zlib.net/ The data format used by the zlib library is described by RFC (Request for Comments) 1950 to 1952 in the files: http://tools.ietf.org/html/rfc1950 (for the zlib header and trailer format) http://tools.ietf.org/html/rfc1951 (for the deflate compressed data format) http://tools.ietf.org/html/rfc1952 (for the gzip header and trailer format) Mark Nelson wrote an article about zlib for the Jan. 1997 issue of Dr. Dobb's Journal; a copy of the article is available at: http://marknelson.us/1997/01/01/zlib-engine/ REPORTING PROBLEMS Before reporting a problem, please check the zlib web site to verify that you have the latest version of zlib; otherwise, obtain the latest version and see if the problem still exists. Please read the zlib FAQ at: http://zlib.net/zlib_faq.html before asking for help. Send questions and/or comments to zlib@gzip.org, or (for the Windows DLL version) to Gilles Vollant (info@winimage.com). AUTHORS AND LICENSE Version 1.3.1 Copyright (C) 1995-2024 Jean-loup Gailly and Mark Adler This software is provided 'as-is', without any express or implied war‐ ranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribu‐ tion. Jean-loup Gailly Mark Adler jloup@gzip.org madler@alumni.caltech.edu The deflate format used by zlib was defined by Phil Katz. The deflate and zlib specifications were written by L. Peter Deutsch. Thanks to all the people who reported problems and suggested various improvements in zlib; who are too numerous to cite here. UNIX manual page by R. P. C. Rodgers, U.S. National Library of Medicine (rodgers@nlm.nih.gov). 22 Jan 2024 ZLIB(3)