void imap_unmunge_mbox_name (char *s);
int imap_wordcasecmp(const char *a, const char *b);
-/* utf8.c */
-void mutt_utf7_encode (char **s);
-void mutt_utf7_decode (char **s);
+/* utf7.c */
+void imap_utf7_encode (char **s);
+void imap_utf7_decode (char **s);
#endif
char *buf;
buf = safe_strdup (src);
- mutt_utf7_encode (&buf);
+ imap_utf7_encode (&buf);
imap_quote_string (dest, dlen, buf);
buf = safe_strdup (s);
if (buf)
{
- mutt_utf7_decode (&buf);
+ imap_utf7_decode (&buf);
strncpy (s, buf, strlen (s));
}