summaryrefslogtreecommitdiffstats
path: root/src/table/iso8859_1.h
blob: e45450608542c7a18b56a3653e5d6743568ab652 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// AUTOMATICALLLY GENERATED by gentables
//
#ifdef ENCODING_DEFAULT


static uint32_t cs_iso8859_1_from_unicode (unicode_t unicode) {
    if (unicode <= 0x00ff) return unicode;
    return NOCHAR;
}

#else

#define cs_iso8859_1_from_unicode cs_unknown_from_unicode
#define cs_iso8859_1_to_unicode   cs_unknown_to_unicode

#endif