move some decoding functions right into the str module, with a bit more
[apps/madmutt.git] / mime.h
diff --git a/mime.h b/mime.h
index 6125e7a..d102594 100644 (file)
--- a/mime.h
+++ b/mime.h
@@ -42,14 +42,9 @@ enum {
 /* MIME encoding/decoding global vars */
 
 #ifndef _SENDLIB_C
-extern int Index_hex[];
-extern int Index_64[];
 extern char B64Chars[];
 #endif
 
-#define hexval(c) Index_hex[(unsigned int)(c)]
-#define base64val(c) Index_64[(unsigned int)(c)]
-
 #define is_multipart(x) \
     ((x)->type == TYPEMULTIPART \
      || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \