Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seiyakobayashi/zlib_sample
Simple implementation of zlib deflation/inflation in c.
https://github.com/seiyakobayashi/zlib_sample
Last synced: 11 days ago
JSON representation
Simple implementation of zlib deflation/inflation in c.
- Host: GitHub
- URL: https://github.com/seiyakobayashi/zlib_sample
- Owner: SeiyaKobayashi
- Created: 2018-02-26T22:37:34.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-03-20T01:30:50.000Z (over 6 years ago)
- Last Synced: 2024-04-23T20:42:21.615Z (7 months ago)
- Language: C
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zlib_sample
Simple implementation of zlib deflation/inflation written in c.---
### How to compile and execute
$ gcc -lz -o zlib_sample zlib_sample.c
$ ./zlib_sample---
### Sample output
Initial string:
Hello, my name is Seiya Kobayashi.
with its length of 34
Compressed string:
x??H????QȭT?K?MU?,NͬLT??OJ?L,???c
with its length of 40
Uncompressed string:
Hello, my name is Seiya Kobayashi.
with its length of 34