]> diplodocus.org Git - nmh/blobdiff - sbr/check_charset.c
Reworked output handling.
[nmh] / sbr / check_charset.c
index e43459ef6a41c23b180fc3971927aa84e9233a15..cc93273fec1f78394f1ffffa4f7f79ea4476146c 100644 (file)
@@ -8,10 +8,12 @@
  */
 
 #include <h/mh.h>
-#ifdef HAVE_LANGINFO_H
-# include <langinfo.h>
-#endif
 
+#include <langinfo.h>
+
+/* Only get_charset() should use norm_charmap(), so hide its
+   declaration here. */
+char *norm_charmap(char *);
 
 /*
  * Get the current character set
 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));
 }