blob: 47fb9e85b0450b64230e3300ca651debb3afeaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#define MAXWLEN 64
#define MINWLEN 4
/* Tags whose contents are searched for hyphenation. */
char *taglist[] = {
"p",
"li",
/* A pointer array needs a sentinel value
in order to be enumerated through. */
"\0"
};
/* Words containing any of these characters
are skipped. */
char *skip = "&/-=~";
/* Inherit the directory at compile time. */
const char *buildpath = BUILD_PATH;
const char *en = "hyph_en_US.dic";
const char *es = "../ext/es/hyph_es.dic";
enum {
pathbuf = 512,
};
|