blob: 7b34bbb905b5ff164c12a65c7a3ac56dcfe2a43c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* The portable font concept (!?*)
*/
/* Line mode browser version:
*/
#ifndef HTFONT_H
#define HTFONT_H
typedef long int HTLMFont; /* For now */
#define HT_NON_BREAK_SPACE ((char)1) /* For now */
#define HT_EM_SPACE ((char)2) /* For now */
#define HT_FONT 0
#define HT_CAPITALS 1
#define HT_BOLD 2
#define HT_UNDERLINE 4
#define HT_INVERSE 8
#define HT_DOUBLE 0x10
#define HT_BLACK 0
#define HT_WHITE 1
#endif /* HTFONT_H */
|