diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-09-26 12:48:21 -0400 |
commit | dccb52556730ff060bcccbe764cef4b13b3d5712 (patch) | |
tree | ce71c0bb7a21f6511be8d45af19f722cf46c00ee /src/color.h | |
parent | 8864dc5d1b9c85daa58e98c04767d2ee528f2dea (diff) | |
download | bfs-dccb52556730ff060bcccbe764cef4b13b3d5712.tar.xz |
dstring: New dchar typedef for dynamic strings
Diffstat (limited to 'src/color.h')
-rw-r--r-- | src/color.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/color.h b/src/color.h index 0d46c33..b118f77 100644 --- a/src/color.h +++ b/src/color.h @@ -9,6 +9,7 @@ #define BFS_COLOR_H #include "config.h" +#include "dstring.h" #include <stdarg.h> #include <stdio.h> @@ -41,7 +42,7 @@ typedef struct CFILE { /** The color table to use, if any. */ const struct colors *colors; /** A buffer for colored formatting. */ - char *buffer; + dchar *buffer; /** Whether the next ${rs} is actually necessary. */ bool need_reset; /** Whether to close the underlying stream. */ |