summary refs log tree commit diff stats
path: root/win/config.h
diff options
context:
space:
mode:
authorkaa <kaa@laptosh.my.domain>2023-06-23 11:56:56 -0700
committerkaa <kaa@laptosh.my.domain>2023-06-23 11:56:56 -0700
commit09819bcd940492c8ccc48284880f8bc652a2845a (patch)
tree89f5425d6907b111afd74142866440fba9bced0c /win/config.h
downloadhyp-09819bcd940492c8ccc48284880f8bc652a2845a.tar.gz
Initial. 1.0
Diffstat (limited to 'win/config.h')
-rw-r--r--win/config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/win/config.h b/win/config.h
new file mode 100644
index 0000000..3264979
--- /dev/null
+++ b/win/config.h
@@ -0,0 +1,20 @@
+#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 = "&/-=";
+
+/* Should the dictionary of hyphenation patterns be in
+a location other than the one specified here, replace this
+with the valid location. */
+char *dictfile = "C:/Users/Otho/tmp/hyp/win/hyph_en_US.dic";