dotfiles

Configs for programs I use!
git clone git://shipwreckt.co.uk/dotfiles.git
Log | Files | Refs | README | LICENSE

boxdraw.h (287B)


      1 #ifndef BOXDRAW_H
      2 #define BOXDRAW_H
      3 
      4 // Declarations for the variables
      5 extern int boxdraw;
      6 extern int boxdraw_braille;
      7 extern int boxdraw_bold;
      8 
      9 // Function prototypes for functions that depend on boxdraw
     10 int isboxdraw(Rune u);
     11 ushort boxdrawindex(const Glyph *g);
     12 
     13 #endif // BOXDRAW_H
     14