The very famous Zlib for Casio fx/cg. An important tool for deflating/inflating streams and files
Go to file
Sylvain PILLOT 9061d22068 Everything updated for cZlib name 2022-08-30 09:45:47 +02:00
cmake Everything updated for cZlib name 2022-08-30 09:45:47 +02:00
.gitignore Some simplifications and cleaning 2022-08-30 09:06:00 +02:00
CMakeLists.txt Everything updated for cZlib name 2022-08-30 09:45:47 +02:00
README.md Everything updated for cZlib name 2022-08-30 09:45:47 +02:00
adler32.c initial commit 2022-04-29 09:49:46 +02:00
compress.c initial commit 2022-04-29 09:49:46 +02:00
crc32.c initial commit 2022-04-29 09:49:46 +02:00
crc32.h initial commit 2022-04-29 09:49:46 +02:00
deflate.c initial commit 2022-04-29 09:49:46 +02:00
deflate.h initial commit 2022-04-29 09:49:46 +02:00
example.c initial commit 2022-04-29 09:49:46 +02:00
giteapc.make giteapc: build only once 2022-08-29 20:36:00 +02:00
gzclose.c initial commit 2022-04-29 09:49:46 +02:00
gzguts.h initial commit 2022-04-29 09:49:46 +02:00
gzlib.c initial commit 2022-04-29 09:49:46 +02:00
gzread.c initial commit 2022-04-29 09:49:46 +02:00
gzwrite.c initial commit 2022-04-29 09:49:46 +02:00
infback.c initial commit 2022-04-29 09:49:46 +02:00
inffast.c initial commit 2022-04-29 09:49:46 +02:00
inffast.h initial commit 2022-04-29 09:49:46 +02:00
inffixed.h initial commit 2022-04-29 09:49:46 +02:00
inflate.c initial commit 2022-04-29 09:49:46 +02:00
inflate.h initial commit 2022-04-29 09:49:46 +02:00
inftrees.c initial commit 2022-04-29 09:49:46 +02:00
inftrees.h initial commit 2022-04-29 09:49:46 +02:00
minigzip.c initial commit 2022-04-29 09:49:46 +02:00
trees.c initial commit 2022-04-29 09:49:46 +02:00
trees.h initial commit 2022-04-29 09:49:46 +02:00
uncompr.c initial commit 2022-04-29 09:49:46 +02:00
zconf.h initial commit 2022-04-29 09:49:46 +02:00
zlib.h initial commit 2022-04-29 09:49:46 +02:00
zutil.c initial commit 2022-04-29 09:49:46 +02:00
zutil.h initial commit 2022-04-29 09:49:46 +02:00

README.md

cZlib 1.2.5 sources for Gint

Need to have a fully working gcc toolchain for SH3/SH4 architecture.

Compilation is done for all targets with a single:

% fxsdk build-fx install

You can also use the giteapc install Slyvtt/cZlib command to get an automatic install.

Using in a program

With CMake:

find_package(cZlib 1.2.5 REQUIRED)
target_link_libraries(<TARGET> PRIVATE cZlib::cZlib)

With make, link with -lcZlib.

In the C/C++ source, #include <zlib.h>.