112029Sache/*
212029Sache * LOCALE_CTYPE for Russian koi8-r character set (RFC1489)
370484Sphantom *
470484Sphantom * $FreeBSD$
512029Sache */
612029SacheENCODING	"NONE"
787108SacheVARIABLE        Russian KOI8-R character set by <ache@nagual.pp.ru>
812029Sache
912029Sache#
1012029Sache# This is a comment
1112029Sache#
1212029SacheALPHA		'A' - 'Z' 'a' - 'z' 0xa3 0xb3 0xc0 - 0xff
1312029SacheCONTROL		0x00 - 0x1f 0x7f
1412029SacheDIGIT		'0' - '9'
1517711SacheGRAPH		0x21 - 0x7e 0x80 - 0x99	0x9b - 0xff
1612029SacheLOWER		'a' - 'z' 0xa3 0xc0 - 0xdf
1712029SachePUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e
1817711SacheSPACE		0x09 - 0x0d 0x20 0x9a
1912029SacheUPPER		'A' - 'Z' 0xb3 0xe0 - 0xff
2012029SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
2117711SacheBLANK		' ' '\t' 0x9a
2212029SachePRINT		0x20 - 0x7e 0x80 - 0xff
2312029Sache
2412029SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2512029SacheMAPLOWER       	<'a' - 'z' : 'a'>
2612029SacheMAPLOWER	<0xb3  0xa3>
2712029SacheMAPLOWER        <0xa3  0xa3>
2812029SacheMAPLOWER	<0xe0 - 0xff : 0xc0>
2912029SacheMAPLOWER	<0xc0 - 0xdf : 0xc0>
3087108Sache
3112029SacheMAPUPPER       	<'A' - 'Z' : 'A'>
3212029SacheMAPUPPER       	<'a' - 'z' : 'A'>
3312029SacheMAPUPPER        <0xb3  0xb3>
3412029SacheMAPUPPER	<0xa3  0xb3>
3512029SacheMAPUPPER	<0xe0 - 0xff : 0xe0>
3612029SacheMAPUPPER	<0xc0 - 0xdf : 0xe0>
3787108Sache
3812029SacheTODIGIT       	<'0' - '9' : 0>
3912029SacheTODIGIT       	<'A' - 'F' : 10>
4012029SacheTODIGIT       	<'a' - 'f' : 10>
41