diff options
author | Shipwreckt <shipwreckt@mailfence.com> | 2025-02-22 07:10:10 +0000 |
---|---|---|
committer | Shipwreckt <shipwreckt@mailfence.com> | 2025-02-22 07:10:10 +0000 |
commit | 971bbb74a02f83650c8cd0550fb91886c4d460fe (patch) | |
tree | d0d56e38ba28ddf37866ceb6b275ff5de48a0e40 /files/config/suckless/st/boxdraw.h | |
parent | 749b69e71e0475bcf1f4d7067414f55f830c9e8d (diff) |
2nd initial commit
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 + |