コード例 #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);
}