10 lines
No EOL
312 B
C
10 lines
No EOL
312 B
C
#ifndef STPDFS_COMPRESSION_LZP_H
|
|
# define STPDFS_COMPRESSION_LZP_H 1
|
|
|
|
# include <stddef.h>
|
|
# include <stdint.h>
|
|
|
|
void lzp_compress(uint8_t *out, size_t *outsz, const uint8_t *in, size_t insz);
|
|
void lzp_decompress(uint8_t *out, size_t *outsz, const uint8_t *in, size_t insz);
|
|
|
|
#endif /* STPDF_COMPRESSION_LZP_H */ |