diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-05-25 14:42:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-05-25 14:42:21 -0400 |
commit | 4c2d7e8271a35409acaba228968ab7641397bbe6 (patch) | |
tree | 0ff9b7ef84851681f2b9d568cd9f054f410fe682 | |
parent | 6934c4355b75994052861bf935fae5edef7b988f (diff) | |
download | bfs-4c2d7e8271a35409acaba228968ab7641397bbe6.tar.xz |
main: Add some missing headers to the overview
-rw-r--r-- | src/main.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |