An open API service indexing awesome lists of open source software.

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

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.