112029Sache/*
287108Sache * Standard LOCALE_CTYPE for the ISO 8859-1 Locale
387108Sache *
487108Sache * $FreeBSD$
512029Sache */
612029SacheENCODING	"NONE"
712029SacheVARIABLE        ISO 8859-1 Latin-1 character set
812029Sache
912029Sache#
1012029Sache# This is a comment
1112029Sache#
1212029SacheALPHA           'A' - 'Z' 'a' - 'z' 0xc0 - 0xd6 0xd8 - 0xf6 0xf8 - 0xff
1312029SacheCONTROL		0x00 - 0x1f 0x7f - 0x9f
1412029SacheDIGIT		'0' - '9'
1517711SacheGRAPH		0x21 - 0x7e 0xa1 - 0xff
1612029SacheLOWER           'a' - 'z' 0xdf - 0xf6 0xf8 - 0xff
1712029SachePUNCT           0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e 0xa1 - 0xbf 0xd7 0xf7
1812029SacheSPACE           0x09 - 0x0d ' ' 0xa0
1912029SacheUPPER           'A' - 'Z' 0xc0 - 0xd6 0xd8 - 0xde
2012029SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
2117711SacheBLANK		' ' '\t' 0xa0
2212029SachePRINT		0x20 - 0x7e 0xa0 - 0xff
2312029Sache
2412029SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2512029SacheMAPLOWER       	<'a' - 'z' : 'a'>
2612029SacheMAPLOWER        <0xc0 - 0xd6 : 0xe0>
2712029SacheMAPLOWER        <0xd8 - 0xde : 0xf8>
2812029SacheMAPLOWER        <0xdf - 0xf6 : 0xdf>
2912029SacheMAPLOWER        <0xf8 - 0xff : 0xf8>
3087108Sache
3112029SacheMAPUPPER       	<'A' - 'Z' : 'A'>
3212029SacheMAPUPPER       	<'a' - 'z' : 'A'>
3312029SacheMAPUPPER        <0xc0 - 0xd6 : 0xc0>
3412029SacheMAPUPPER        <0xd8 - 0xde : 0xd8>
3512029SacheMAPUPPER        <0xe0 - 0xf6 : 0xc0>
3612029SacheMAPUPPER        <0xf8 - 0xfe : 0xd8>
3787108Sache
3812029SacheTODIGIT       	<'0' - '9' : 0>
3912029SacheTODIGIT       	<'A' - 'F' : 10>
4012029SacheTODIGIT       	<'a' - 'f' : 10>
41