X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/5dd6771b28c257af405d7248639ed0e3bcdce38b..f1595ee7fc4db1bf8c50b00a796fb3f9b1d66c21:/sbr/check_charset.c diff --git a/sbr/check_charset.c b/sbr/check_charset.c index 8ee93b1e..cc93273f 100644 --- a/sbr/check_charset.c +++ b/sbr/check_charset.c @@ -8,10 +8,12 @@ */ #include -#ifdef HAVE_LANGINFO_H -# include -#endif +#include + +/* Only get_charset() should use norm_charmap(), so hide its + declaration here. */ +char *norm_charmap(char *); /* * Get the current character set @@ -19,12 +21,7 @@ char * get_charset () { - char *charset = getenv ("MM_CHARSET"); -#if defined(HAVE_NL_LANGINFO) && defined(CODESET) - if (!charset) - charset = norm_charmap(nl_langinfo (CODESET)); -#endif - return charset; + return norm_charmap(nl_langinfo (CODESET)); } @@ -51,7 +48,7 @@ check_charset (char *str, int len) /* US-ASCII is a subset of the ISO-8859-X and UTF-8 character sets */ if (!strncasecmp("ISO-8859-", mm_charset, 9) || - !mh_strcasecmp("UTF-8", mm_charset)) { + !strcasecmp("UTF-8", mm_charset)) { alt_charset = "US-ASCII"; alt_len = strlen (alt_charset); }