summaryrefslogtreecommitdiffstats
path: root/bftw.h
AgeCommit message (Expand)Author
2020-09-18stat: Rename bfs_stat_flag to _flagsTavian Barnes
2020-09-18Don't call stat() just to determine symbolic lengthsTavian Barnes
2020-07-29bftw: Make some flag names more explicitTavian Barnes
2020-07-29bftw: Rename bftw_typeflag to bftw_type, and make it not a bitmaskTavian Barnes
2020-06-16Implement exponential deepening searchTavian Barnes
2020-03-21Implement -s flag from FreeBSD find to sort resultsTavian Barnes
2019-07-04Make -mount and -xdev do different thingsTavian Barnes
2019-06-25bftw: Remove BFTW_SKIP_SIBLINGSTavian Barnes
2019-06-25bftw.h: Add missing #include for mode_tTavian Barnes
2019-05-29Implement an iterative deepening mode (-ids)Tavian Barnes
2019-05-28Implement a depth-first mode (-dfs)Tavian Barnes
2019-05-28bftw: Visit multiple roots breadth-firstTavian Barnes
2019-05-05bftw: Pass a const struct BFTW * to the callbackTavian Barnes
2019-05-04bftw: Add a caching stat() API to struct BFTWTavian Barnes
2019-05-04stat: Unify the flags argumentsTavian Barnes
2019-03-06bftw: Work around d_type being wrong for bind mounts on LinuxTavian Barnes
2019-03-06bftw: Switch from taking separate parameters to a parameters structTavian Barnes
2019-02-09Add some documentation commentsTavian Barnes
2018-12-17bftw: Move bftw_typeflag conversion out of utilTavian Barnes
2018-09-24Update copyright datesTavian Barnes
2018-01-08stat: New wrapper around the stat() familyTavian Barnes
2018-01-08Minor header cleanupsTavian Barnes
2017-07-27Re-license under the BSD Zero Clause LicenseTavian Barnes
2017-04-24Release 1.01.0Tavian Barnes
2017-04-08Move bftw_typeflag converters to util.cTavian Barnes
2017-02-08Add support for -x?type with multiple typesTavian Barnes
2017-02-05Implement -printf/-fprintfTavian Barnes
2016-11-24Update some copyright dates.Tavian Barnes
2016-11-21bftw: Make bftw_flags more similar to fts() options.Tavian Barnes
2016-10-02bftw: Add support for some exotic file types, where available.Tavian Barnes
2016-02-14Implement -mount/-xdev.Tavian Barnes
2016-02-13Follow links if appropriate in predicates.Tavian Barnes
2016-02-09Implement -L/-follow.Tavian Barnes
2016-02-04Implement -P and -H.Tavian Barnes
2016-02-04Don't use typedefs to avoid struct/enum tags.Tavian Barnes
2015-09-26Optimize -maxdepth in -depth mode.Tavian Barnes
2015-09-26Don't call stat() until absolutely necessary.Tavian Barnes
2015-09-26bftw() interface improvements:Tavian Barnes
2015-09-08Add -depth support.Tavian Barnes
2015-09-02Print the root file/directory too.Tavian Barnes
2015-08-30Add -type support.Tavian Barnes
2015-07-25Recover from errors in diropen().Tavian Barnes
2015-07-23bftw: New struct BFTW type to hold file attributes.Tavian Barnes
2015-06-18bftw: Add flags parameter and BFTW_STAT flag.Tavian Barnes
2015-06-14Implement bftw().Tavian Barnes