Lines Matching refs:codepage
1896 static char codepage[64]; local
1912 sprintf(codepage,"ibm-%d", ccsid);
1913 return codepage;
1916 static char codepage[64];
1918 strncpy(codepage, nl_langinfo(CODESET),63-strlen(UCNV_SWAP_LFNL_OPTION_STRING));
1919 strcat(codepage,UCNV_SWAP_LFNL_OPTION_STRING);
1920 codepage[63] = 0; /* NULL terminate */
1922 return codepage;
1925 static char codepage[64];
1926 sprintf(codepage, "windows-%d", GetACP());
1927 return codepage;