Skip to content

A portable, one-header library to decode bit streams compressed with the Deflate algorithm

License

Notifications You must be signed in to change notification settings

martin-rizzo/Inflater

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

    #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 file for details.

About

A portable, one-header library to decode bit streams compressed with the Deflate algorithm

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published