summaryrefslogtreecommitdiffstats
path: root/color.h
AgeCommit message (Collapse)Author
2020-06-02diag: Unify debug printingTavian 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-02-09Add some documentation commentsTavian Barnes
2019-01-02color: Check format strings + args for cfprintf()Tavian Barnes
%{cc} is now ${cc} to avoid warnings about an unrecognized format specifier, and %P and %L are now %pP and %pL to make them look more like standard format strings.
2019-01-02diag: Unify diagnostic formattingTavian Barnes
This adds a bfs: prefix to error/warning messages for consistency with other command line tools, and leaves only the "error:"/"warning:" part colored like GCC. It also uniformly adds full stops after messages.
2018-09-24Update copyright datesTavian Barnes
2018-08-16color: Fix a doc comment typoTavian Barnes
2017-11-13color: Implement %m for cfprintf()Tavian Barnes
2017-08-27Implement cost-based optimizationTavian Barnes
2017-07-27Re-license under the BSD Zero Clause LicenseTavian Barnes
2017-05-15Add colors to -D treeTavian Barnes
2017-04-24Release 1.01.0Tavian Barnes
2017-03-16Color link targets for -lsTavian Barnes
Fixes #18.
2017-03-16Give struct expr a CFILE* instead of just a FILE*Tavian Barnes
This unifies the behaviour of -print and -fprint /dev/stdout.
2017-03-11Make a printf()-style API for colored messagesTavian Barnes
2016-11-24Update some copyright dates.Tavian Barnes
2016-10-16Check for errors in -print and friends.Tavian Barnes
2016-02-14s/color_table/colors/.Tavian Barnes
2016-02-14Refactor color handling.Tavian Barnes
The main benefit is colored warnings/errors during parsing.
2016-02-14Don't modify the result of getenv().Tavian Barnes
2016-02-04Don't use typedefs to avoid struct/enum tags.Tavian Barnes
2015-09-26bftw() interface improvements:Tavian Barnes
- Use enums instead of ints where it makes sense - Move the file path inside struct BFTW - Expose a fd and relative path for *at() calls
2015-09-08Implement -delete.Tavian Barnes
Related to #5.
2015-09-02Print the root file/directory too.Tavian Barnes
2015-07-25Recover from errors in diropen().Tavian Barnes
Fixes #4.
2015-06-20Add initial support for colorized output.Tavian Barnes