diff options
Diffstat (limited to 'include/id_table.h')
-rw-r--r-- | include/id_table.h | 5 |
1 files changed, 5 insertions, 0 deletions
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 <stdint.h> #include <stddef.h> +#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 */ |