KEEL 1.0.0
Minimal C11 HTTP client/server library built on epoll/kqueue/io_uring/poll
Loading...
Searching...
No Matches
decompress_miniz.h
Go to the documentation of this file.
1#ifndef KEEL_DECOMPRESS_MINIZ_H
2#define KEEL_DECOMPRESS_MINIZ_H
3
4#include <keel/decompress.h>
5#include <keel/compress.h> /* for KlCompressCtx */
6
19 KlAllocator *alloc);
20
21#endif /* KEEL_DECOMPRESS_MINIZ_H */
struct KlCompressCtx KlCompressCtx
Opaque per-server compression context (algorithm config, level). User-owned — KEEL never inspects or ...
Definition compress.h:67
KlDecompress * kl_decompress_miniz_create(KlCompressCtx *ctx, KlAllocator *alloc)
Create a miniz-based gzip decompression session.
Bring-your-own allocator vtable.
Definition allocator.h:12
Definition decompress.h:16