1174904Sache/*
2174904Sache * Standard LOCALE_CTYPE for the ISO 8859-9 Locale
3174904Sache *
4174904Sache * $FreeBSD$
5174904Sache */
6174904SacheENCODING	"NONE"
7174904SacheVARIABLE        ISO 8859-9 Latin-5 character set
8174904Sache
9174904Sache#
10174904Sache# This is a comment
11174904Sache#
12174904SacheALPHA           'A' - 'Z' 'a' - 'z' 0xc0 - 0xd6 0xd8 - 0xf6 0xf8 - 0xff
13174904SacheCONTROL		0x00 - 0x1f 0x7f - 0x9f
14174904SacheDIGIT		'0' - '9'
15174904SacheGRAPH		0x21 - 0x7e 0xa1 - 0xff
16174904SacheLOWER           'a' - 'z' 0xdf - 0xf6 0xf8 - 0xff
17174904SachePUNCT           0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e 0xa1 - 0xbf 0xd7 0xf7
18174904SacheSPACE           0x09 - 0x0d ' ' 0xa0
19174904SacheUPPER           'A' - 'Z' 0xc0 - 0xd6 0xd8 - 0xde
20174904SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
21174904SacheBLANK		' ' '\t' 0xa0
22174904SachePRINT		0x20 - 0x7e 0xa0 - 0xff
23174904Sache
24174904SacheMAPLOWER       	<'A' - 'H' : 'a'>
25174904SacheMAPLOWER        <'I'   0xfd>
26174904SacheMAPLOWER       	<'J' - 'Z' : 'j'>
27174904SacheMAPLOWER       	<'a' - 'z' : 'a'>
28174904SacheMAPLOWER        <0xc0 - 0xd6 : 0xe0>
29174904SacheMAPLOWER        <0xd8 - 0xdc : 0xf8>
30174904SacheMAPLOWER        <0xdd  'i'>
31174904SacheMAPLOWER        <0xde  0xfe>
32174904SacheMAPLOWER        <0xdf - 0xf6 : 0xdf>
33174904SacheMAPLOWER        <0xf8 - 0xff : 0xf8>
34174904Sache
35174904SacheMAPUPPER       	<'A' - 'Z' : 'A'>
36174904SacheMAPUPPER       	<'a' - 'h' : 'A'>
37174904SacheMAPUPPER       	<'i'   0xdd>
38174904SacheMAPUPPER       	<'j' - 'z' : 'J'>
39174904SacheMAPUPPER        <0xc0 - 0xd6 : 0xc0>
40174904SacheMAPUPPER        <0xd8 - 0xde : 0xd8>
41174904SacheMAPUPPER        <0xe0 - 0xf6 : 0xc0>
42174904SacheMAPUPPER        <0xf8 - 0xfc : 0xd8>
43174904SacheMAPUPPER        <0xfd  'I'>
44174904SacheMAPUPPER        <0xfe  0xde>
45174904Sache
46174904SacheTODIGIT       	<'0' - '9' : 0>
47174904SacheTODIGIT       	<'A' - 'F' : 10>
48174904SacheTODIGIT       	<'a' - 'f' : 10>
49