From fd22d7851e08ab6c9b57f5857062a9e4cfdc41cc Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Wed, 1 May 2019 02:33:20 +0200 Subject: cleanup round - remove debug prints - move id table write out to id table code - dummy remove wrapper function for fragment table Signed-off-by: David Oberhollenzer --- include/table.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'include/table.h') diff --git a/include/table.h b/include/table.h index 5a39797..3eb5655 100644 --- a/include/table.h +++ b/include/table.h @@ -8,11 +8,8 @@ #include #include -int sqfs_write_fragment_table(int outfd, sqfs_super_t *super, - sqfs_fragment_t *fragments, size_t count, - compressor_t *cmp); - -int sqfs_write_ids(int outfd, sqfs_super_t *super, uint32_t *id_tbl, - size_t count, compressor_t *cmp); +int sqfs_write_table(int outfd, sqfs_super_t *super, const void *data, + size_t entsize, size_t count, uint64_t *startblock, + compressor_t *cmp); #endif /* TABLE_H */ -- cgit v1.2.3