diff options
author | robi <robi> | 2010-05-20 00:15:01 +0000 |
---|---|---|
committer | robi <robi> | 2010-05-20 00:15:01 +0000 |
commit | 4efdf36026aa2c76ea8a0b8667598e49bde7b678 (patch) | |
tree | de14b911cf2fb2e77a8913b9fdce3c3348320ceb /src/block.h |
Initial revision
Diffstat (limited to 'src/block.h')
-rw-r--r-- | src/block.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/block.h b/src/block.h new file mode 100644 index 0000000..1e89608 --- /dev/null +++ b/src/block.h @@ -0,0 +1,26 @@ +#ifndef BLOCK_H +#define BLOCK_H + + +#include <ext2fs/ext2fs.h> + + + + +errcode_t local_block_iterate3(ext2_filsys fs, + struct ext2_inode inode, + int flags, + char *block_buf, + int (*func)(ext2_filsys fs, + blk_t *blocknr, + e2_blkcnt_t blockcnt, + blk_t ref_blk, + int ref_offset, + void *priv_data), + void *priv_data); + + + + +int read_block ( ext2_filsys, blk_t*, void* ); //read filesystem block +#endif //BLOCK_H |