Lines Matching refs:codepage
1840 static char codepage[64]; in int_getDefaultCodepage() local
1856 sprintf(codepage,"ibm-%d", ccsid); in int_getDefaultCodepage()
1857 return codepage; in int_getDefaultCodepage()
1860 static char codepage[64]; in int_getDefaultCodepage()
1862 strncpy(codepage, nl_langinfo(CODESET),63-strlen(UCNV_SWAP_LFNL_OPTION_STRING)); in int_getDefaultCodepage()
1863 strcat(codepage,UCNV_SWAP_LFNL_OPTION_STRING); in int_getDefaultCodepage()
1864 codepage[63] = 0; /* NULL terminate */ in int_getDefaultCodepage()
1866 return codepage; in int_getDefaultCodepage()
1869 static char codepage[64]; in int_getDefaultCodepage()
1870 sprintf(codepage, "windows-%d", GetACP()); in int_getDefaultCodepage()
1871 return codepage; in int_getDefaultCodepage()