summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2023-05-25 14:42:21 -0400
committerTavian Barnes <tavianator@tavianator.com>2023-05-25 14:42:21 -0400
commit4c2d7e8271a35409acaba228968ab7641397bbe6 (patch)
tree0ff9b7ef84851681f2b9d568cd9f054f410fe682 /src/main.c
parent6934c4355b75994052861bf935fae5edef7b988f (diff)
downloadbfs-4c2d7e8271a35409acaba228968ab7641397bbe6.tar.xz
main: Add some missing headers to the overview
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 24a5035..c354553 100644
--- a/src/main.c
+++ b/src/main.c
@@ -21,6 +21,7 @@
*
* - Utilities:
* - bar.[ch] (a terminal status bar)
+ * - bit.h (bit manipulation)
* - bfstd.[ch] (standard library wrappers/polyfills)
* - color.[ch] (for pretty terminal colors)
* - config.h (configuration and feature/platform detection)
@@ -29,8 +30,10 @@
* - dir.[ch] (a directory API facade)
* - dstring.[ch] (a dynamic string library)
* - fsade.[ch] (a facade over non-standard filesystem features)
+ * - list.h (linked list macros)
* - mtab.[ch] (parses the system's mount table)
* - pwcache.[ch] (a cache for the user/group tables)
+ * - sanity.h (sanitizer interfaces)
* - stat.[ch] (wraps stat(), or statx() on Linux)
* - trie.[ch] (a trie set/map implementation)
* - typo.[ch] (fuzzy matching for typos)