mirror of
https://github.com/sgan81/apfs-fuse.git
synced 2025-12-14 20:35:44 +01:00
19 lines
468 B
C
19 lines
468 B
C
/*
|
|
* Created..: 31 October 2014
|
|
* Filename.: FastCompression.h
|
|
* Author...: Pike R. Alpha
|
|
* Purpose..: Command line tool to LZVN compress a file.
|
|
*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern size_t lzvn_encode(void * dst, size_t dst_size, const void * src, size_t src_size, void * work_space);
|
|
extern size_t lzvn_decode(void * dst, size_t dst_size, const void * src, size_t src_size);
|
|
extern size_t lzvn_encode_work_size(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|