![]() |
Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
|
#include <stdio.h>#include <stdint.h>#include <inttypes.h>#include <stdbool.h>#include <lzma.h>Macros | |
| #define | COMPRESSION_LEVEL 6 |
| #define | COMPRESSION_EXTREME true |
| #define | INTEGRITY_CHECK LZMA_CHECK_CRC64 |
| #define | IN_BUF_MAX 4096 |
| #define | OUT_BUF_MAX 4096 |
| #define | RET_OK 0 |
| #define | RET_ERROR_INIT 1 |
| #define | RET_ERROR_INPUT 2 |
| #define | RET_ERROR_OUTPUT 3 |
| #define | RET_ERROR_COMPRESSION 4 |
Functions | |
| int | xz_compress (FILE *in_file, FILE *out_file) |
| int | main () |
| #define COMPRESSION_EXTREME true |
| #define COMPRESSION_LEVEL 6 |
| #define IN_BUF_MAX 4096 |
| #define INTEGRITY_CHECK LZMA_CHECK_CRC64 |
| #define OUT_BUF_MAX 4096 |
| #define RET_ERROR_COMPRESSION 4 |
| #define RET_ERROR_INIT 1 |
| #define RET_ERROR_INPUT 2 |
| #define RET_ERROR_OUTPUT 3 |
| #define RET_OK 0 |
| int main | ( | void | ) |
| int xz_compress | ( | FILE * | in_file, |
| FILE * | out_file ) |