123222Swosch/*
223222Swosch * LOCALE_CTYPE for the iso_8859_2 Locale
323222Swosch *
450477Speter * $FreeBSD$
523222Swosch */
623222Swosch
723222SwoschENCODING	"NONE"
823222SwoschVARIABLE        ISO 8859-2 Latin-2 character set
923222Swosch
1023222Swosch#
1123222Swosch# This is a comment
1223222Swosch#
1323222SwoschALPHA		'A' - 'Z' 'a' - 'z' 
1487108SacheALPHA           0xa1 0xa3 0xa5 0xa6 0xa9 - 0xac 0xae 0xaf
1587108SacheALPHA           0xb1 0xb3 0xb5 0xb6 0xb9 - 0xbc 0xbe 0xbf
1687108SacheALPHA           0xc0 - 0xd6 0xd8 - 0xf6 0xf8 - 0xfe
1723222SwoschCONTROL		0x00 - 0x1f 0x7f - 0x9f
1823222SwoschDIGIT		'0' - '9'
1987108SacheGRAPH           0x21 - 0x7e 0xa1 - 0xff
2023222SwoschLOWER		'a' - 'z' 
2187108SacheLOWER           0xb1 0xb3 0xb5 0xb6 0xb9 - 0xbc 0xbe 0xbf
2287108SacheLOWER           0xdf - 0xf6 0xf8 - 0xfe
2323222SwoschPUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e 
2487108SachePUNCT           0xa2 0xa4 0xa7 0xa8 0xad 0xb0 0xb2 0xb4 0xb7 0xb8 0xbd
2587108SachePUNCT           0xd7 0xf7 0xff
2623222SwoschSPACE		0x09 - 0x0d 0x20 0xa0
2723222SwoschUPPER		'A' - 'Z' 
2887108SacheUPPER           0xa1 0xa3 0xa5 0xa6 0xa9 - 0xac 0xae 0xaf
2987108SacheUPPER           0xc0 - 0xd6 0xd8 - 0xde
3087106SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
3123222SwoschBLANK		' ' '\t' 0xa0
3223222SwoschPRINT		0x20 - 0x7e 0xa0 - 0xff
3323222Swosch
3423222SwoschMAPLOWER       	<'A' - 'Z' : 'a'>
3523222SwoschMAPLOWER       	<'a' - 'z' : 'a'>
3623222SwoschMAPLOWER	<0xa1 0xb1>
3723222SwoschMAPLOWER	<0xa3 0xb3>
3823222SwoschMAPLOWER	<0xa5 0xb5>
3923222SwoschMAPLOWER	<0xa6 0xb6>
4023222SwoschMAPLOWER	<0xa9 - 0xac : 0xb9>
4123222SwoschMAPLOWER	<0xae 0xbe>
4223222SwoschMAPLOWER	<0xaf 0xbf>
4323222SwoschMAPLOWER	<0xb1 0xb1>
4423222SwoschMAPLOWER	<0xb3 0xb3>
4523222SwoschMAPLOWER	<0xb5 0xb5>
4623222SwoschMAPLOWER	<0xb6 0xb6>
4723222SwoschMAPLOWER	<0xb9 - 0xbc : 0xb9>
4823222SwoschMAPLOWER	<0xbe 0xbe>
4923222SwoschMAPLOWER	<0xbf 0xbf>
5023222SwoschMAPLOWER	<0xc0 - 0xd6 : 0xe0>
5123222SwoschMAPLOWER	<0xd8 - 0xde : 0xf8>
5223222SwoschMAPLOWER	<0xdf - 0xf6 : 0xdf>
5323222SwoschMAPLOWER	<0xf8 - 0xfe : 0xf8>
5487108Sache
5523222SwoschMAPUPPER       	<'A' - 'Z' : 'A'>
5623222SwoschMAPUPPER       	<'a' - 'z' : 'A'>
5723222SwoschMAPUPPER	<0xa1 0xa1>
5823222SwoschMAPUPPER	<0xa3 0xa3>
5923222SwoschMAPUPPER	<0xa5 0xa5>
6023222SwoschMAPUPPER	<0xa6 0xa6>
6123222SwoschMAPUPPER	<0xa9 - 0xac : 0xa9>
6223222SwoschMAPUPPER	<0xae 0xae>
6323222SwoschMAPUPPER	<0xaf 0xaf>
6423222SwoschMAPUPPER	<0xb1 0xa1>
6523222SwoschMAPUPPER	<0xb3 0xa3>
6623222SwoschMAPUPPER	<0xb5 0xa5>
6723222SwoschMAPUPPER	<0xb6 0xa6>
6823222SwoschMAPUPPER	<0xb9 - 0xbc : 0xa9>
6923222SwoschMAPUPPER	<0xbe 0xae>
7023222SwoschMAPUPPER	<0xbf 0xaf>
7123222SwoschMAPUPPER	<0xc0 - 0xd6 : 0xc0>
7223222SwoschMAPUPPER	<0xd8 - 0xdf : 0xd8>
7323222SwoschMAPUPPER	<0xe0 - 0xf6 : 0xc0>
7423222SwoschMAPUPPER	<0xf8 - 0xfe : 0xd8>
7587108Sache
7623222SwoschTODIGIT       	<'0' - '9' : 0>
7723222SwoschTODIGIT       	<'A' - 'F' : 10>
7823222SwoschTODIGIT       	<'a' - 'f' : 10>
79