summaryrefslogtreecommitdiffstats
path: root/mtab.h
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-09-27 12:55:55 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-09-27 13:23:49 -0400
commit62bbbe1a4165f63b31c68b1595ecb0e67d7af3dc (patch)
treec770ff13f37023cae132108b29077a904e6d4dfb /mtab.h
parent3c83bf4e1920be909f65945e56dc8b779c472a59 (diff)
downloadbfs-62bbbe1a4165f63b31c68b1595ecb0e67d7af3dc.tar.xz
Rename struct cmdline to bfs_ctx
The API remains similar, with some added accessor functions for lazy initialization of the pwcache and mtab.
Diffstat (limited to 'mtab.h')
-rw-r--r--mtab.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/mtab.h b/mtab.h
index 57fe11d..b2f057d 100644
--- a/mtab.h
+++ b/mtab.h
@@ -1,6 +1,6 @@
/****************************************************************************
* bfs *
- * Copyright (C) 2017-2019 Tavian Barnes <tavianator@tavianator.com> *
+ * Copyright (C) 2017-2020 Tavian Barnes <tavianator@tavianator.com> *
* *
* Permission to use, copy, modify, and/or distribute this software for any *
* purpose with or without fee is hereby granted. *
@@ -35,7 +35,7 @@ struct bfs_mtab;
* @return
* The parsed mount table, or NULL on error.
*/
-struct bfs_mtab *parse_bfs_mtab(void);
+struct bfs_mtab *bfs_parse_mtab(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 free_bfs_mtab(struct bfs_mtab *mtab);
+void bfs_free_mtab(struct bfs_mtab *mtab);
#endif // BFS_MTAB_H