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/id_table.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/id_table.h') diff --git a/include/id_table.h b/include/id_table.h index 6d5d416..c49923e 100644 --- a/include/id_table.h +++ b/include/id_table.h @@ -5,6 +5,8 @@ #include #include +#include "compress.h" + typedef struct { uint32_t *ids; size_t num_ids; @@ -17,4 +19,7 @@ void id_table_cleanup(id_table_t *tbl); int id_table_id_to_index(id_table_t *tbl, uint32_t id, uint16_t *out); +int id_table_write(id_table_t *tbl, int outfd, sqfs_super_t *super, + compressor_t *cmp); + #endif /* ID_TABLE_H */ -- cgit v1.2.3