Skip to content

Tags: pfalcon/uzlib

Tags

v2.9.5

Toggle v2.9.5's commit message
README: Update bin sizes for 2.9.5.

Signed-off-by: Paul Sokolovsky <[email protected]>

v2.9.4

Toggle v2.9.4's commit message
.gitignore: Ignore archive, map, and executable files

v2.9.3

Toggle v2.9.3's commit message
defl_static: Get rid of "code" field in len_coderecord altogether.

Saves 88 bytes on ARM.

v2.9.2

Toggle v2.9.2's commit message
defl_static.h: Add license blurb.

These can be considered to be "automatically generated metadata", and
also were changed in noticeable ways comparing to original Simon Tatham's
code, so not trying to make a claim that these are copyright by him.
Instead, just use the generic copyright notice and the license of the
uzlib project.

v2.9.1

Toggle v2.9.1's commit message
README: Update bin sizes for 2.9.1.

v2.9

Toggle v2.9's commit message
Makefile: Add top-level makefile to build/clean everything.

v2.1.1

Toggle v2.1.1's commit message
tinflate: Explicitly get length/invlength as little-endian.

Previosuly, the statements looked like:

length = uzlib_get_byte(d) + 256 * uzlib_get_byte(d);

But the C standard doesn't define in which order function calls are made,
and different compilers/their options may use different order. So, break
the statement above in two, to guarantee the proper computation order.

Reported in #8.

v2.1

Toggle v2.1's commit message
tinflate: When using sliding dictionary, check that offset lies withi…

…n it.

v2.0.3

Toggle v2.0.3's commit message
tinfgzip: Fixes for pedantic compiler warnings.

v2.0.2

Toggle v2.0.2's commit message
adler32, crc32: Consistently use stdint types.