Home | History | Annotate | Download | only in lib

Lines Matching refs:CODESET

329   const char *codeset;
336 /* Most systems support nl_langinfo (CODESET) nowadays. */
337 codeset = nl_langinfo (CODESET);
340 /* Cygwin 2006 does not have locales. nl_langinfo (CODESET) always
344 if (codeset != NULL && strcmp (codeset, "US-ASCII") == 0)
382 codeset = buf;
412 codeset = locale;
422 codeset = buf;
431 /* Allow user to override the codeset, as set in the operating system,
463 codeset = locale;
469 codeset = "";
473 codeset = buf;
479 if (codeset == NULL)
481 codeset = "";
487 if (strcmp (codeset, aliases) == 0
490 codeset = aliases + strlen (aliases) + 1;
497 if (codeset[0] == '\0')
498 codeset = "ASCII";
500 return codeset;