forked from dbry/lzw-ab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlzwlib.h
15 lines (12 loc) · 811 Bytes
/
lzwlib.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
////////////////////////////////////////////////////////////////////////////
// **** LZW-AB **** //
// Adjusted Binary LZW Compressor/Decompressor //
// Copyright (c) 2016-2020 David Bryant //
// All Rights Reserved //
// Distributed under the BSD Software License (see license.txt) //
////////////////////////////////////////////////////////////////////////////
#ifndef LZWLIB_H_
#define LZWLIB_H_
int lzw_compress (void (*dst)(int,void*), void *dstctx, int (*src)(void*), void *srcctx, int maxbits);
int lzw_decompress (void (*dst)(int,void*), void *dstctx, int (*src)(void*), void *srcctx);
#endif /* LZWLIB_H_ */