summaryrefslogtreecommitdiffstats
path: root/src/parse.c
AgeCommit message (Expand)Author
2023-07-12parse: Reject -j0Tavian Barnes
2023-07-06Use strcmp() instead of fnmatch() if possibleTavian Barnes
2023-06-29parse: Warn about errors parsing $LS_COLORSTavian Barnes
2023-06-24Unify macro naming conventionsTavian Barnes
2023-06-20alloc: New header for memory allocation utilitiesTavian Barnes
2023-06-20bfstd: New xmemdup() functionTavian Barnes
2023-06-16parse: Shell-escape arguments in diagnosticsTavian Barnes
2023-06-14parse: Don't default to depth-first when argv[0] is "find"Tavian Barnes
2023-06-13bftw: Use an I/O queue to open directoriesTavian Barnes
2023-05-25sanity: Add wrappers for sanitizer interfacesTavian Barnes
2023-05-18Switch from assert() to bfs_assert()/bfs_verify()Tavian Barnes
2023-05-18Use bfs_bug("...") over assert(!"...")Tavian Barnes
2023-05-11config: Provide <stdalign.h> and <stdbool.h>Tavian Barnes
2023-05-10config: s/BFS_FALLTHROUGH/fallthru/Tavian Barnes
2023-05-10config: s/BFS_UNINIT/uninit/Tavian Barnes
2023-05-08config: Hoist the assignment outside of BFS_UNINIT()Tavian Barnes
2023-01-25Replace license boilerplate with SPDX tagsTavian Barnes
2023-01-24opt: Move probabilities out of the parserTavian Barnes
2023-01-24opt: Move costs out of the parserTavian Barnes
2023-01-24opt: Move always_{true,false} out of the parserTavian Barnes
2023-01-24opt: Move purity out of the parserTavian Barnes
2023-01-19bfstd: New wrappers for dirname()/basename()Tavian Barnes
2022-12-09parse: Mark another variable with BFS_UNINIT()Tavian Barnes
2022-12-09config: New BFS_UNINIT() macro for intentionally uninitialized variablesTavian Barnes
2022-12-05expr: Rename bfs_expr_has_children() to _is_parent()Tavian Barnes
2022-11-30parse: Fix crash on -xdev -mountTavian Barnes
2022-11-30parse: Pass the right argument when warning about -O9Tavian Barnes
2022-11-30expr: Remove the singleton bfs_{true,false} expressionsTavian Barnes
2022-11-29expr: Remove the synthetic flagTavian Barnes
2022-11-29Dump expression trees in a multi-line formatTavian Barnes
2022-11-17expr: Don't use reftime for -lsTavian Barnes
2022-11-13Use BFS_COMMAND over "bfs" in more placesTavian Barnes
2022-11-10Try to report I/O errors earlier and only onceTavian Barnes
2022-11-09parse: Squelch an uninitialized variable warningTavian Barnes
2022-11-09pwcache: Fill the user/group caches lazilyTavian Barnes
2022-11-07xtime: Move parse_gettime() to xgettime()Tavian Barnes
2022-11-07xtime: s/parse_timestamp/xgetdate/Tavian Barnes
2022-11-06bfstd: Rename from util and reorganize itTavian Barnes
2022-11-06config: Split out some of util.h into a new headerTavian Barnes
2022-10-19parse: Don't free uninitialized data on error pathsTavian Barnes
2022-07-05parse: They're called "primary expressions," not "literals"Tavian Barnes
2022-05-13parse: Warn on paths found within -excludeTavian Barnes
2022-04-16Source / Include Folder (#88)トトも