|
DeterministicESPAsyncWebServer v6.27.1
Zero-allocation, bounded-execution async HTTP server for ESP32
|
Bounded RFC 1951 DEFLATE decompressor - implementation. More...
#include "inflate.h"Go to the source code of this file.
Bounded RFC 1951 DEFLATE decompressor - implementation.
A compact canonical-Huffman INFLATE (the classic count[]/symbol[] decode, as in Mark Adler's "puff" reference) written from RFC 1951. Decoding is bit by bit - small and deterministic rather than fast, which suits the small messages this serves. All state is on the stack plus a caller-supplied table scratch; the output buffer doubles as the LZ77 window (see inflate.h).
Definition in file inflate.cpp.