Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
delta_private.h
Go to the documentation of this file.
1// SPDX-License-Identifier: 0BSD
2
4//
7//
8// Author: Lasse Collin
9//
11
12#ifndef LZMA_DELTA_PRIVATE_H
13#define LZMA_DELTA_PRIVATE_H
14
15#include "delta_common.h"
16
17typedef struct {
19 lzma_next_coder next;
20
22 size_t distance;
23
25 uint8_t pos;
26
28 uint8_t history[LZMA_DELTA_DIST_MAX];
30
31
35
36#endif
Custom functions for memory handling.
Definition base.h:372
Definition delta_private.h:18
Definition common.h:177
Hold data and function pointers of the next filter in the chain.
Definition common.h:195
#define LZMA_DELTA_DIST_MAX
Definition delta.h:61
lzma_ret
Return values used by several functions in liblzma.
Definition base.h:57
const lzma_allocator * allocator
Definition block.h:377
const lzma_filter * filters
Definition container.h:315
lzma_ret lzma_delta_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition delta_common.c:28
Common stuff for Delta encoder and decoder.