summaryrefslogtreecommitdiffstats
path: root/mtab.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-10-06 13:15:43 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-10-06 13:15:43 -0400
commitd2d9a751b172edb2b3aee613cf4bbe06ff5a07c8 (patch)
tree1717b0c2ef3afa8ce8230fbd5d1a40c174cda598 /mtab.h
parent19528c3cab1020196bd6a033dd47871e087f8886 (diff)
downloadbfs-d2d9a751b172edb2b3aee613cf4bbe06ff5a07c8.tar.xz
mtab: Adjust some naming conventions
Diffstat (limited to 'mtab.h')
-rw-r--r--mtab.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mtab.h b/mtab.h
index b2f057d..1f2f70f 100644
--- a/mtab.h
+++ b/mtab.h
@@ -35,7 +35,7 @@ struct bfs_mtab;
* @return
* The parsed mount table, or NULL on error.
*/
-struct bfs_mtab *bfs_parse_mtab(void);
+struct bfs_mtab *bfs_mtab_parse(void);
/**
* Determine the file system type that a file is on.
@@ -65,6 +65,6 @@ bool bfs_might_be_mount(const struct bfs_mtab *mtab, const char *path);
/**
* Free a mount table.
*/
-void bfs_free_mtab(struct bfs_mtab *mtab);
+void bfs_mtab_free(struct bfs_mtab *mtab);
#endif // BFS_MTAB_H