X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Fcheck_charset.c;h=d11d772973bd3d5af4e02bd80fa0cb0190e4cbd2;hp=cba270d06dfcc6e7e481a25ec43379f4bc705fff;hb=714b5c530ece27ea2835a313013f5b770163403c;hpb=ced6090a330d3d83d0bce709f756aa3d7d65fea4 diff --git a/sbr/check_charset.c b/sbr/check_charset.c index cba270d..d11d772 100644 --- a/sbr/check_charset.c +++ b/sbr/check_charset.c @@ -16,12 +16,12 @@ ** Get the current character set */ char * -get_charset () +get_charset() { - char *charset = getenv ("MM_CHARSET"); + char *charset = getenv("MM_CHARSET"); #if defined(HAVE_NL_LANGINFO) && defined(CODESET) if (!charset) - charset = norm_charmap(nl_langinfo (CODESET)); + charset = norm_charmap(nl_langinfo(CODESET)); #endif return charset; } @@ -35,7 +35,7 @@ get_charset () */ int -check_charset (char *str, int len) +check_charset(char *str, int len) { static char *mm_charset = NULL; static char *alt_charset = NULL; @@ -44,15 +44,15 @@ check_charset (char *str, int len) /* Cache the name of our default character set */ if (!mm_charset) { - if (!(mm_charset = get_charset ())) + if (!(mm_charset = get_charset())) mm_charset = "US-ASCII"; - mm_len = strlen (mm_charset); + mm_len = strlen(mm_charset); /* 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)) { alt_charset = "US-ASCII"; - alt_len = strlen (alt_charset); + alt_len = strlen(alt_charset); } } @@ -71,7 +71,7 @@ check_charset (char *str, int len) ** using for 8bit text. */ char * -write_charset_8bit (void) +write_charset_8bit(void) { static char *mm_charset = NULL; @@ -79,7 +79,7 @@ write_charset_8bit (void) ** Cache the name of the character set to ** use for 8bit text. */ - if (!mm_charset && !(mm_charset = get_charset ())) + if (!mm_charset && !(mm_charset = get_charset())) mm_charset = "x-unknown"; return mm_charset;