152388Sache/*
252388Sache * LOCALE_CTYPE for Ukrainian koi8-u character set (RFC2319)
352388Sache *
452388Sache * $FreeBSD$
552388Sache */
652388SacheENCODING	"NONE"
752388SacheVARIABLE        Ukrainian koi8-u character set
852388Sache
952388Sache#
1052388Sache# This is a comment
1152388Sache#
1259549SphantomALPHA		'A' - 'Z' 'a' - 'z' 0xa3 0xb3 0xa4 0xb4 0xa6 0xb6 0xa7 0xb7 0xad 0xbd 0xc0 - 0xff
1352388SacheCONTROL		0x00 - 0x1f 0x7f
1452388SacheDIGIT		'0' - '9'
1552388SacheGRAPH		0x21 - 0x7e 0x80 - 0x99	0x9b - 0xff
1652388SacheLOWER		'a' - 'z' 0xa3 0xa4 0xa6 0xa7 0xad 0xc0 - 0xdf
1752388SachePUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e
1852388SacheSPACE		0x09 - 0x0d 0x20 0x9a
1952388SacheUPPER		'A' - 'Z' 0xb3 0xb4 0xb6 0xb7 0xbd 0xe0 - 0xff
2052388SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
2152388SacheBLANK		' ' '\t' 0x9a
2252388SachePRINT		0x20 - 0x7e 0x80 - 0xff
2352388Sache
2452388SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2552388SacheMAPLOWER       	<'a' - 'z' : 'a'>
2652388SacheMAPLOWER	<0xb3  0xa3>
2752388SacheMAPLOWER        <0xa3  0xa3>
2852388SacheMAPLOWER	<0xb4  0xa4>
2952388SacheMAPLOWER        <0xa4  0xa4>
3052388SacheMAPLOWER	<0xb6  0xa6>
3152388SacheMAPLOWER        <0xa6  0xa6>
3252388SacheMAPLOWER	<0xb7  0xa7>
3352388SacheMAPLOWER        <0xa7  0xa7>
3452388SacheMAPLOWER	<0xbd  0xad>
3552388SacheMAPLOWER        <0xad  0xad>
3652388SacheMAPLOWER	<0xe0 - 0xff : 0xc0>
3752388SacheMAPLOWER	<0xc0 - 0xdf : 0xc0>
3887108Sache
3952388SacheMAPUPPER       	<'A' - 'Z' : 'A'>
4052388SacheMAPUPPER       	<'a' - 'z' : 'A'>
4152388SacheMAPUPPER        <0xb3  0xb3>
4252388SacheMAPUPPER	<0xa3  0xb3>
4352388SacheMAPUPPER        <0xb4  0xb4>
4452388SacheMAPUPPER	<0xa4  0xb4>
4552388SacheMAPUPPER        <0xb6  0xb6>
4652388SacheMAPUPPER	<0xa6  0xb6>
4752388SacheMAPUPPER        <0xb7  0xb7>
4852388SacheMAPUPPER	<0xa7  0xb7>
4952388SacheMAPUPPER        <0xbd  0xbd>
5052388SacheMAPUPPER	<0xad  0xbd>
5152388SacheMAPUPPER	<0xe0 - 0xff : 0xe0>
5252388SacheMAPUPPER	<0xc0 - 0xdf : 0xe0>
5387108Sache
5452388SacheTODIGIT       	<'0' - '9' : 0>
5552388SacheTODIGIT       	<'A' - 'F' : 10>
5652388SacheTODIGIT       	<'a' - 'f' : 10>
57