aboutsummaryrefslogtreecommitdiffstats
path: root/mimehead.c
diff options
context:
space:
mode:
authorAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-09 04:59:17 +0000
committerAkinori Ito <aito@eie.yz.yamagata-u.ac.jp>2001-11-09 04:59:17 +0000
commit6c63633545c254dc085402e0f927a6826d1dd229 (patch)
tree0126fb5598304c713ea1276e294da9098b5df3b4 /mimehead.c
parentInitial revision (diff)
downloadw3m-6c63633545c254dc085402e0f927a6826d1dd229.tar.gz
w3m-6c63633545c254dc085402e0f927a6826d1dd229.zip
Updates from 0.2.1 into 0.2.1-inu-1.5release-0-2-1-inu-1-5
Diffstat (limited to '')
-rw-r--r--mimehead.c36
1 files changed, 31 insertions, 5 deletions
diff --git a/mimehead.c b/mimehead.c
index 90dcceb..1d1b507 100644
--- a/mimehead.c
+++ b/mimehead.c
@@ -110,6 +110,33 @@ decodeB(char **ww)
return ap;
}
+Str
+decodeU(char **ww)
+{
+ unsigned char c1, c2;
+ char *w = *ww;
+ int n, i;
+ Str a;
+
+ if (*w <= 0x20 || *w >= 0x60)
+ return Strnew_size(0);
+ n = *w - 0x20;
+ a = Strnew_size(n);
+ for (w++, i = 2; *w != '\0' && n; n--) {
+ c1 = (w[0] - 0x20) % 0x40;
+ c2 = (w[1] - 0x20) % 0x40;
+ Strcat_char(a, (c1 << i) | (c2 >> (6 - i)));
+ if (i == 6) {
+ w += 2;
+ i = 2;
+ } else {
+ w++;
+ i += 2;
+ }
+ }
+ return a;
+}
+
/* RFC2047 (4.2. The "Q" encoding) */
Str
decodeQ(char **ww)
@@ -166,21 +193,20 @@ decodeQP(char **ww)
Str
decodeWord(char **ow)
{
- char charset[32];
char *p, *w = *ow;
char method;
Str a = Strnew();
+ Str charset = Strnew();
if (*w != '=' || *(w + 1) != '?')
goto convert_fail;
w += 2;
- for (p = charset; *w != '?'; w++) {
+ for (; *w != '?'; w++) {
if (*w == '\0')
goto convert_fail;
- *(p++) = *w;
+ Strcat_char(charset,*w);
}
- *p = '\0';
- if (strcasecmp(charset, J_CHARSET) != 0) {
+ if (Strcasecmp_charp(charset, J_CHARSET) != 0) {
/* NOT ISO-2022-JP encoding ... don't convert */
goto convert_fail;
}