aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-10-07 13:49:40 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-10-07 13:49:40 +0200
commit5597dca9c6053cd19104e18d88edb199b32e3743 (patch)
tree0d9e774067b12ca1d1cf6b91dc637dcc2ad2bb1c /include
parent3b47afacf5d6443b3460cd979abfff6c71a4ec3d (diff)
Rename "hihglevel.h" to the more appropriate "common.h"
It only contains helpers for _common_ stuff for all the utilities. The actual high level stuff has been moved to libsquashfs a while ago. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/common.h (renamed from include/highlevel.h)10
1 files changed, 6 insertions, 4 deletions
diff --git a/include/highlevel.h b/include/common.h
index be2302b..d4e11c4 100644
--- a/include/highlevel.h
+++ b/include/common.h
@@ -1,19 +1,21 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
/*
- * highlevel.h
+ * common.h
*
* Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at>
*/
-#ifndef HIGHLEVEL_H
-#define HIGHLEVEL_H
+#ifndef COMMON_H
+#define COMMON_H
#include "config.h"
#include "sqfs/xattr_writer.h"
+#include "sqfs/xattr_reader.h"
#include "sqfs/compressor.h"
#include "sqfs/id_table.h"
#include "sqfs/inode.h"
#include "sqfs/table.h"
+#include "sqfs/error.h"
#include "sqfs/meta_writer.h"
#include "sqfs/data_reader.h"
#include "sqfs/data_writer.h"
@@ -134,4 +136,4 @@ void sqfs_writer_cleanup(sqfs_writer_t *sqfs);
void sqfs_perror(const char *file, const char *action, int error_code);
-#endif /* HIGHLEVEL_H */
+#endif /* COMMON_H */