Home | History | Annotate | Download | only in intl

Lines Matching full:outcharset

808 	  const char *outcharset;
827 outcharset = domainbinding->codeset;
830 outcharset = getenv ("OUTPUT_CHARSET");
831 if (outcharset == NULL || outcharset[0] == '\0')
834 outcharset = _NL_CURRENT (LC_CTYPE, CODESET);
838 outcharset = locale_charset ();
846 outcharset = norm_add_slashes (outcharset, "TRANSLIT");
848 if (__gconv_open (outcharset, charset, &domain->conv,
858 if (strchr (outcharset, '/') == NULL)
862 len = strlen (outcharset);
864 memcpy (tmp, outcharset, len);
866 outcharset = tmp;
868 domain->conv = iconv_open (outcharset, charset);
870 freea (outcharset);
874 domain->conv = iconv_open (outcharset, charset);