aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-06-10 22:55:22 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-06-10 22:56:53 +0200
commit4d2e87b767d1e025699286783c23926ec5eff857 (patch)
tree9df2b8dc99ce41fc3ecbda95d1d755bb3fc826c7 /include
parent0742ee3943192434d69092f11946f791f0f25502 (diff)
Rename table.h to highlevel.h
The idea is to move various higher level helper functions there. Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include')
-rw-r--r--include/highlevel.h (renamed from include/table.h)7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/table.h b/include/highlevel.h
index 57d8654..e69e337 100644
--- a/include/table.h
+++ b/include/highlevel.h
@@ -1,9 +1,10 @@
/* SPDX-License-Identifier: GPL-3.0-or-later */
-#ifndef TABLE_H
-#define TABLE_H
+#ifndef HIGHLEVEL_H
+#define HIGHLEVEL_H
#include "squashfs.h"
#include "compress.h"
+#include "id_table.h"
#include "fstree.h"
#include <stdint.h>
@@ -39,4 +40,4 @@ int sqfs_write_table(int outfd, sqfs_super_t *super, const void *data,
int sqfs_serialize_fstree(int outfd, sqfs_super_t *super, fstree_t *fs,
compressor_t *cmp, id_table_t *idtbl);
-#endif /* TABLE_H */
+#endif /* HIGHLEVEL_H */