diff options
Diffstat (limited to 'files/config/suckless/st/boxdraw.h')
-rw-r--r-- | files/config/suckless/st/boxdraw.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/files/config/suckless/st/boxdraw.h b/files/config/suckless/st/boxdraw.h new file mode 100644 index 0000000..2e00dc0 --- /dev/null +++ b/files/config/suckless/st/boxdraw.h @@ -0,0 +1,14 @@ +#ifndef BOXDRAW_H +#define BOXDRAW_H + +// Declarations for the variables +extern int boxdraw; +extern int boxdraw_braille; +extern int boxdraw_bold; + +// Function prototypes for functions that depend on boxdraw +int isboxdraw(Rune u); +ushort boxdrawindex(const Glyph *g); + +#endif // BOXDRAW_H + |