diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-13 16:15:42 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-09-13 16:15:42 +0200 |
commit | 82b943d4d6b5895f7c07be24802c3d7ec9069dae (patch) | |
tree | eecff305b33ac251829041cc7228674d53dc267e /lib/sqfs/blk_proc/internal.h | |
parent | 31ae9e5cc5337558ddb456c379949e23af43fd9f (diff) |
Make block process helper function internal
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/sqfs/blk_proc/internal.h')
-rw-r--r-- | lib/sqfs/blk_proc/internal.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/sqfs/blk_proc/internal.h b/lib/sqfs/blk_proc/internal.h new file mode 100644 index 0000000..1c33999 --- /dev/null +++ b/lib/sqfs/blk_proc/internal.h @@ -0,0 +1,16 @@ +#ifndef INTERNAL_H +#define INTERNAL_H + +#include "config.h" +#include "sqfs/predef.h" + +#include "sqfs/block_processor.h" +#include "sqfs/compress.h" +#include "sqfs/error.h" +#include "util.h" + +SQFS_INTERNAL +int sqfs_block_process(sqfs_block_t *block, sqfs_compressor_t *cmp, + uint8_t *scratch, size_t scratch_size); + +#endif /* INTERNAL_H */ |