https://github.com/martin-rizzo/inflater
A portable, one-header library to decode bit streams compressed with the Deflate algorithm
https://github.com/martin-rizzo/inflater
c group-microlibs
Last synced: 12 months ago
JSON representation
A portable, one-header library to decode bit streams compressed with the Deflate algorithm
- Host: GitHub
- URL: https://github.com/martin-rizzo/inflater
- Owner: martin-rizzo
- License: mit
- Created: 2020-06-18T15:11:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-02-01T18:28:10.000Z (over 4 years ago)
- Last Synced: 2025-04-08T17:36:48.835Z (about 1 year ago)
- Topics: c, group-microlibs
- Language: C
- Homepage:
- Size: 313 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Inflater
========
A portable, one-header library to decode bit streams compressed with the Deflate algorithm.
Installation and usage
----------------------
Inflater is a single header library. That is, you only need to copy the `'inflater.h'` header into any folder of your project's source tree. Then when you want to start using Inflater functions for first time, you must include the header in your code but making sure to define INFLATER_IMPLEMENTATION macro just before including it:
```C
#define INFLATER_IMPLEMENTATION
#include "inflater.h"
```
Later if other source files in your project need to use the Inflater functions then they only must include the header as usual WITHOUT having to define the macro again.
Functions
---------
Documentation
-------------
Examples
--------
License
-------
Copyright (c) 2020 Martin Rizzo
This project is licensed under the MIT license.
See the [LICENSE.md]("LICENSE.md") file for details.