aboutsummaryrefslogtreecommitdiff
path: root/include/sqfs/dir.h
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-07 01:24:19 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-09-07 01:24:19 +0200
commite71c56420a8fc3dc7e36eb059304a362b47a1c15 (patch)
tree3661327d3cd901f214bc8996bb2cf00432fd00c8 /include/sqfs/dir.h
parent3d9ba1a234d0966de21d8d592bea7b4ffc325586 (diff)
Move meta reader/writer functions to respective headers
The dir.h and inode.h headers contained meta data reader/writer related functions. This commit moves them to the propper headers. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/sqfs/dir.h')
-rw-r--r--include/sqfs/dir.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/sqfs/dir.h b/include/sqfs/dir.h
index 0b14cdf..196d135 100644
--- a/include/sqfs/dir.h
+++ b/include/sqfs/dir.h
@@ -36,14 +36,6 @@ struct sqfs_dir_index_t {
extern "C" {
#endif
-/* Returns 0 on success. Internally prints to stderr on failure */
-SQFS_API int sqfs_meta_reader_read_dir_header(sqfs_meta_reader_t *m,
- sqfs_dir_header_t *hdr);
-
-/* Entry can be freed with a single free() call.
- The function internally prints to stderr on failure */
-SQFS_API sqfs_dir_entry_t *sqfs_meta_reader_read_dir_ent(sqfs_meta_reader_t *m);
-
SQFS_API sqfs_dir_writer_t *sqfs_dir_writer_create(sqfs_meta_writer_t *dm);
SQFS_API void sqfs_dir_writer_destroy(sqfs_dir_writer_t *writer);