aboutsummaryrefslogtreecommitdiffstats
path: root/regex.h
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2003-09-22 21:02:15 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2003-09-22 21:02:15 +0000
commit604c11affe988bab23c87598c02248fff1d73f43 (patch)
tree6252cbbfd3cf703691a8ddbf1fdee5c1246b5faa /regex.h
parent* version.c.in: cvs version (diff)
downloadw3m-604c11affe988bab23c87598c02248fff1d73f43.tar.gz
w3m-604c11affe988bab23c87598c02248fff1d73f43.zip
merge m17n patch
add libwc
Diffstat (limited to 'regex.h')
-rw-r--r--regex.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/regex.h b/regex.h
index 0d11b65..da20f70 100644
--- a/regex.h
+++ b/regex.h
@@ -1,9 +1,14 @@
-/* $Id: regex.h,v 1.5 2002/01/10 15:39:21 ukai Exp $ */
+/* $Id: regex.h,v 1.6 2003/09/22 21:02:21 ukai Exp $ */
#define REGEX_MAX 64
#define STORAGE_MAX 256
-
-typedef unsigned short longchar;
+typedef struct {
+ char type;
+#ifdef USE_M17N
+ wc_wchar_t wch;
+#endif
+ unsigned char ch;
+} longchar;
typedef struct regexchar {
union {