Lines Matching full:codepage
1281 * The default codepage detection also needs to use LC_CTYPE.
1321 LC_ALL ----> default_loc codepage
1339 The leftmost codepage (.xxx) wins.
1632 * The default codepage given by Solaris is 646 but the C library routines treat it as if it was
1647 /* Remap CP949 to a similar codepage to avoid issues with backslash and won symbol. */
1652 /* Remap CP949 to a similar codepage to avoid issues with backslash and won symbol. */
1723 static char codepage[64];
1739 sprintf(codepage,"ibm-%d", ccsid);
1740 return codepage;
1743 static char codepage[64];
1745 strncpy(codepage, nl_langinfo(CODESET),63-strlen(UCNV_SWAP_LFNL_OPTION_STRING));
1746 strcat(codepage,UCNV_SWAP_LFNL_OPTION_STRING);
1747 codepage[63] = 0; /* NULL terminate */
1749 return codepage;
1755 static char codepage[64];
1756 sprintf(codepage, "windows-%d", GetACP());
1757 return codepage;