Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Zlib
提交
94acb3c1
T
Third Party Zlib
项目概览
OpenHarmony
/
Third Party Zlib
1 年多 前同步成功
通知
16
Star
112
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Zlib
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
94acb3c1
编写于
2月 12, 2012
作者:
M
Mark Adler
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zlib 1.2.6.1
上级
75143f81
变更
12
隐藏空白更改
内联
并排
Showing
12 changed file
with
25 addition
and
14 deletion
+25
-14
ChangeLog
ChangeLog
+13
-2
crc32.c
crc32.c
+1
-1
gzread.c
gzread.c
+1
-1
inflate.c
inflate.c
+1
-1
zconf.h
zconf.h
+1
-1
zconf.h.cmakein
zconf.h.cmakein
+1
-1
zconf.h.in
zconf.h.in
+1
-1
zlib.3
zlib.3
+1
-1
zlib.3.pdf
zlib.3.pdf
+0
-0
zlib.h
zlib.h
+2
-2
zutil.c
zutil.c
+1
-1
zutil.h
zutil.h
+2
-2
未找到文件。
ChangeLog
浏览文件 @
94acb3c1
ChangeLog file for zlib
Changes in 1.2.6.1 (xx Jan 2012)
-
Changes in 1.2.6.1 (12 Feb 2012)
- Avoid the use of the Objective-C reserved name "id"
- Include io.h in gzguts.h for Microsoft compilers
- Fix problem with ./configure --prefix and gzgetc macro
- Include gz_header definition when compiling zlib solo
- Put gzflags() functionality back in zutil.c
- Avoid library header include in crc32.c for Z_SOLO
- Use name in GCC_CLASSIC as C compiler for coverage testing, if set
- Minor cleanup in contrib/minizip/zip.c [Vollant]
- Update make_vms.com [Zinser]
- Remove unnecessary gzgetc_ function
- Use optimized byte swap operations for Microsoft and GNU [Snyder]
- Fix minor typo in zlib.h comments [Rzesniowiecki]
Changes in 1.2.6 (29 Jan 2012)
- Update the Pascal interface in contrib/pascal
...
...
crc32.c
浏览文件 @
94acb3c1
/* crc32.c -- compute the CRC-32 of a data stream
* Copyright (C) 1995-2006, 2010, 2011 Mark Adler
* Copyright (C) 1995-2006, 2010, 2011
, 2012
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*
* Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster
...
...
gzread.c
浏览文件 @
94acb3c1
/* gzread.c -- zlib functions for reading gzip files
* Copyright (C) 2004, 2005, 2010, 2011 Mark Adler
* Copyright (C) 2004, 2005, 2010, 2011
, 2012
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
inflate.c
浏览文件 @
94acb3c1
/* inflate.c -- zlib decompression
* Copyright (C) 1995-201
1
Mark Adler
* Copyright (C) 1995-201
2
Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zconf.h
浏览文件 @
94acb3c1
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-201
1
Jean-loup Gailly.
* Copyright (C) 1995-201
2
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zconf.h.cmakein
浏览文件 @
94acb3c1
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-201
1
Jean-loup Gailly.
* Copyright (C) 1995-201
2
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zconf.h.in
浏览文件 @
94acb3c1
/* zconf.h -- configuration of the zlib compression library
* Copyright (C) 1995-201
1
Jean-loup Gailly.
* Copyright (C) 1995-201
2
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zlib.3
浏览文件 @
94acb3c1
.TH ZLIB 3 "
xx Jan
2012"
.TH ZLIB 3 "
12 Feb
2012"
.SH NAME
zlib \- compression/decompression library
.SH SYNOPSIS
...
...
zlib.3.pdf
浏览文件 @
94acb3c1
无法预览此类型文件
zlib.h
浏览文件 @
94acb3c1
/* zlib.h -- interface of the 'zlib' general purpose compression library
version 1.2.6.1,
January xx
th, 2012
version 1.2.6.1,
February 12
th, 2012
Copyright (C) 1995-2012 Jean-loup Gailly and Mark Adler
...
...
@@ -37,7 +37,7 @@
extern
"C"
{
#endif
#define ZLIB_VERSION "1.2.6.1
-motley
"
#define ZLIB_VERSION "1.2.6.1"
#define ZLIB_VERNUM 0x1261
#define ZLIB_VER_MAJOR 1
#define ZLIB_VER_MINOR 2
...
...
zutil.c
浏览文件 @
94acb3c1
/* zutil.c -- target dependent utility functions for the compression library
* Copyright (C) 1995-2005, 2010, 2011 Jean-loup Gailly.
* Copyright (C) 1995-2005, 2010, 2011
, 2012
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
zutil.h
浏览文件 @
94acb3c1
/* zutil.h -- internal interface and configuration of the compression library
* Copyright (C) 1995-201
1
Jean-loup Gailly.
* Copyright (C) 1995-201
2
Jean-loup Gailly.
* For conditions of distribution and use, see copyright notice in zlib.h
*/
...
...
@@ -255,7 +255,7 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
# define ZSWAP32(q) __builtin_bswap32(q)
#else
# define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
(((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
(((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
#endif
#endif
/* ZUTIL_H */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录