151889Sache/*
288313Sache * LOCALE_CTYPE for ISO8859-5 set
351889Sache *
451889Sache * $FreeBSD$
551889Sache */
651889Sache
751889SacheENCODING	"NONE"
888313SacheVARIABLE        ISO8859-5 charset, initially submitted by <nms@ethereal.ru>
951889Sache
1087108SacheALPHA           'A' - 'Z' 'a' - 'z'
1188313SacheALPHA		0xa1 - 0xac 0xae - 0xef 0xf1 - 0xfc 0xfe 0xff
1287108SacheBLANK           ' ' '\t' 0xa0
1387108SacheCONTROL         0x00 - 0x1f 0x7f - 0x9f
1451889SacheDIGIT		'0' - '9'
1587108SacheGRAPH           0x21 - 0x7e 0xa1 - 0xff
1687108SacheLOWER           'a' - 'z'
1788313SacheLOWER		0xd0 - 0xef 0xf1 - 0xfc 0xfe 0xff
1887108SachePRINT           0x20 - 0x7e 0xa0 - 0xff
1988313SachePUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e 
2088313SachePUNCT		0xad 0xf0 0xfd
2187108SacheSPACE           0x09 - 0x0d 0x20 0xa0
2287108SacheUPPER           'A' - 'Z'
2388313SacheUPPER		0xa1 - 0xac 0xae - 0xcf
2451889SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
2551889Sache
2651889SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2751889SacheMAPLOWER       	<'a' - 'z' : 'a'>
2888313SacheMAPLOWER	<0xb0 - 0xcf : 0xd0>
2988313SacheMAPLOWER	<0xd0 - 0xef : 0xd0>
3088313SacheMAPLOWER        <0xa1 - 0xac : 0xf1>
3188313SacheMAPLOWER        <0xf1 - 0xfc : 0xf1>
3288313SacheMAPLOWER        <0xae - 0xaf : 0xfe>
3388313SacheMAPLOWER        <0xfe - 0xff : 0xfe>
3451889Sache
3551889SacheMAPUPPER       	<'A' - 'Z' : 'A'>
3651889SacheMAPUPPER       	<'a' - 'z' : 'A'>
3788313SacheMAPUPPER	<0xb0 - 0xcf : 0xb0>
3888313SacheMAPUPPER	<0xd0 - 0xef : 0xb0>
3988313SacheMAPUPPER        <0xa1 - 0xac : 0xa1>
4088313SacheMAPUPPER        <0xf1 - 0xfc : 0xa1>
4188313SacheMAPUPPER        <0xae - 0xaf : 0xae>
4288313SacheMAPUPPER        <0xfe - 0xff : 0xae>
4351889Sache
4451889SacheTODIGIT       	<'0' - '9' : 0>
4551889SacheTODIGIT       	<'A' - 'F' : 10>
4651889SacheTODIGIT       	<'a' - 'f' : 10>
47