diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 16:22:57 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-11-06 16:37:14 -0500 |
commit | 096884c4fe1fb922eab2797d4583ca2ae8ae2600 (patch) | |
tree | 850e214301a5fd94b7f2a3e94bd90a390739581f /src/main.c | |
parent | 46387a7dcda93e7df9f5baa3ead753c0feeff122 (diff) | |
download | bfs-096884c4fe1fb922eab2797d4583ca2ae8ae2600.tar.xz |
config: Split out some of util.h into a new header
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -33,9 +33,9 @@ * - bftw.[ch] (an extended version of nftw(3)) * * - Utilities: - * - bfs.h (constants about bfs itself) * - bar.[ch] (a terminal status bar) * - color.[ch] (for pretty terminal colors) + * - config.h (configuration and feature/platform detection) * - darray.[ch] (a dynamic array library) * - diag.[ch] (formats diagnostic messages) * - dir.[ch] (a directory API facade) @@ -46,10 +46,10 @@ * - stat.[ch] (wraps stat(), or statx() on Linux) * - trie.[ch] (a trie set/map implementation) * - typo.[ch] (fuzzy matching for typos) - * - util.[ch] (everything else) * - xregex.[ch] (regular expression support) * - xspawn.[ch] (spawns processes) * - xtime.[ch] (date/time handling utilities) + * - util.[ch] (everything else) */ #include "ctx.h" |