Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | trie: Store void* values rather than const void* | Tavian Barnes | 2019-03-27 | 1 | -1/+1 |
| | | | | Fewer casts needed this way. | ||||
* | bftw: Work around d_type being wrong for bind mounts on Linux | Tavian Barnes | 2019-03-06 | 1 | -5/+23 |
| | | | | | | C.f. https://savannah.gnu.org/bugs/?54913 C.f. https://lkml.org/lkml/2019/2/11/2027 Fixes https://github.com/tavianator/bfs/issues/37 | ||||
* | mtab: Fix implementation for all platforms | Tavian Barnes | 2019-03-06 | 1 | -14/+7 |
| | |||||
* | mtab: Replace the linked list of file system types with a trie | Tavian Barnes | 2019-03-06 | 1 | -44/+24 |
| | |||||
* | Check for <sys/param.h> before including it | Tavian Barnes | 2018-11-08 | 1 | -2/+5 |
| | | | | Fixes #38. | ||||
* | util: Wrap __has_include() | Tavian Barnes | 2018-11-01 | 1 | -5/+1 |
| | |||||
* | Update copyright dates | Tavian Barnes | 2018-09-24 | 1 | -1/+1 |
| | |||||
* | mtab: Fall back on /proc/mounts if /etc/mtab isn't available | Tavian Barnes | 2018-03-04 | 1 | -0/+4 |
| | |||||
* | stat: New wrapper around the stat() family | Tavian Barnes | 2018-01-08 | 1 | -11/+13 |
| | | | | | This lets bfs transparently support the new statx() system call on Linux, giving it access to file birth times. | ||||
* | mtab: Add support for Solaris | Tavian Barnes | 2017-09-09 | 1 | -0/+43 |
| | |||||
* | mtab: Use __has_include() to check for <mntent.h> | Tavian Barnes | 2017-09-02 | 1 | -4/+15 |
| | | | | | This fixes the build against musl, as long as you have a new enough compiler for __has_include. | ||||
* | Re-license under the BSD Zero Clause License | Tavian Barnes | 2017-07-27 | 1 | -10/+15 |
| | |||||
* | mtab: Check __GLIBC__ instead of __linux__ for getmntent() | Tavian Barnes | 2017-04-30 | 1 | -2/+2 |
| | |||||
* | mtab: Don't hardcode /etc/mtab | Tavian Barnes | 2017-04-29 | 1 | -1/+1 |
| | |||||
* | Implement -fstype | Tavian Barnes | 2017-04-23 | 1 | -0/+174 |
Fixes #6! |