A portable, one-header library to decode bit streams compressed with the Deflate algorithm.
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:
#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.
Copyright (c) 2020 Martin Rizzo
This project is licensed under the MIT license.
See the LICENSE.md file for details.