pad: call isprint() only for ascii characters
[fbpad.git] / config.h
blobe9142c49e41d7d7442e816760cea07c9634fdc15
1 #define TAGS "xnlhtr01uiva-"
2 #define TAGS_SAVED ""
3 #define SHELL "ksh"
4 #define MAIL "mailx"
5 #define EDITOR "vi"
7 /* fbval_t should match framebuffer depth */
8 typedef unsigned int fbval_t;
10 /* fontsets; tinyfont files for regular, italic, and bold fonts */
11 #define F0 {"/path/to/font.tf", NULL, NULL}
12 #define F1 {}
13 #define F2 {}
14 #define F3 {}
15 #define F4 {}
17 #define FGCOLOR 0
18 #define BGCOLOR 7
20 /* where to write the screen shot */
21 #define SCRSHOT "/tmp/scr"
23 /* optimized version of fb_val() */
24 #define FB_VAL(r, g, b) fb_val((r), (g), (b))
26 /* black */
27 #define COLOR0 0x000000
28 #define COLOR8 0x407080
29 /* red */
30 #define COLOR1 0xa02020
31 #define COLOR9 0xb05050
32 /* green */
33 #define COLOR2 0x156015
34 #define COLOR10 0x307030
35 /* yellow */
36 #define COLOR3 0x707030
37 #define COLOR11 0x909060
38 /* blue */
39 #define COLOR4 0x202070
40 #define COLOR12 0x303080
41 /* magenta */
42 #define COLOR5 0x903070
43 #define COLOR13 0xa05080
44 /* cyan */
45 #define COLOR6 0x602080
46 #define COLOR14 0x704090
47 /* white */
48 #define COLOR7 0xf0f0f0
49 #define COLOR15 0xdedede