The very famous Zlib for Casio fx/cg. An important tool for deflating/inflating streams and files
| cmake | ||
| .gitignore | ||
| adler32.c | ||
| CMakeLists.txt | ||
| compress.c | ||
| crc32.c | ||
| crc32.h | ||
| deflate.c | ||
| deflate.h | ||
| example.c | ||
| giteapc.make | ||
| gzclose.c | ||
| gzguts.h | ||
| gzlib.c | ||
| gzread.c | ||
| gzwrite.c | ||
| infback.c | ||
| inffast.c | ||
| inffast.h | ||
| inffixed.h | ||
| inflate.c | ||
| inflate.h | ||
| inftrees.c | ||
| inftrees.h | ||
| minigzip.c | ||
| README.md | ||
| trees.c | ||
| trees.h | ||
| uncompr.c | ||
| zconf.h | ||
| zlib.h | ||
| zutil.c | ||
| zutil.h | ||
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>.