示例#1
0
文件: MACUCS.C 项目: moka/literacies
char const *cp_enumerate (int index)
{
    int charset;
    if (index == 0)
	return "Use font encoding";
    charset = charset_localenc_nth(index-1);
    if (charset == CS_NONE)
	return NULL;
    return charset_to_localenc(charset);
}
示例#2
0
文件: uxucs.c 项目: ctymtce/putty0.6
const char *cp_enumerate(int index)
{
    int charset;
    if (index == 0)
	return "UTF-8";
    charset = charset_localenc_nth(index-1);
    if (charset == CS_NONE)
	return NULL;
    return charset_to_localenc(charset);
}
示例#3
0
文件: uxucs.c 项目: NaldoDj/VeraCrypt
const char *cp_enumerate(int index)
{
    int charset;
    charset = charset_localenc_nth(index);
    if (charset == CS_NONE) {
        /* "Use font encoding" comes after all the named charsets */
        if (charset_localenc_nth(index-1) != CS_NONE)
            return "Use font encoding";
	return NULL;
    }
    return charset_to_localenc(charset);
}
示例#4
0
文件: MACUCS.C 项目: moka/literacies
char const *cp_name(int codepage)
{
    if (codepage == CS_NONE)
	return "Use font encoding";
    return charset_to_localenc(codepage);
}
示例#5
0
文件: uxucs.c 项目: ctymtce/putty0.6
const char *cp_name(int codepage)
{
    if (codepage == CS_NONE)
	return "UTF-8";
    return charset_to_localenc(codepage);
}