la_LN.ISO8859-1.src revision 17711
112029Sache/*
212029Sache * Standard LOCALE_CTYPE for the iso_8859_1 Locale
312029Sache */
412029SacheENCODING	"NONE"
512029SacheVARIABLE        ISO 8859-1 Latin-1 character set
612029Sache
712029Sache#
812029Sache# This is a comment
912029Sache#
1012029SacheALPHA           'A' - 'Z' 'a' - 'z' 0xc0 - 0xd6 0xd8 - 0xf6 0xf8 - 0xff
1112029SacheCONTROL		0x00 - 0x1f 0x7f - 0x9f
1212029SacheDIGIT		'0' - '9'
1317711SacheGRAPH		0x21 - 0x7e 0xa1 - 0xff
1412029SacheLOWER           'a' - 'z' 0xdf - 0xf6 0xf8 - 0xff
1512029SachePUNCT           0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e 0xa1 - 0xbf 0xd7 0xf7
1612029SacheSPACE           0x09 - 0x0d ' ' 0xa0
1712029SacheUPPER           'A' - 'Z' 0xc0 - 0xd6 0xd8 - 0xde
1812029SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
1917711SacheBLANK		' ' '\t' 0xa0
2012029SachePRINT		0x20 - 0x7e 0xa0 - 0xff
2112029Sache# IDEOGRAM
2212029Sache# SPECIAL
2312029Sache# PHONEGRAM
2412029Sache
2512029SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2612029SacheMAPLOWER       	<'a' - 'z' : 'a'>
2712029SacheMAPLOWER        <0xc0 - 0xd6 : 0xe0>
2812029SacheMAPLOWER        <0xd8 - 0xde : 0xf8>
2912029SacheMAPLOWER        <0xdf - 0xf6 : 0xdf>
3012029SacheMAPLOWER        <0xf8 - 0xff : 0xf8>
3112029SacheMAPUPPER       	<'A' - 'Z' : 'A'>
3212029SacheMAPUPPER       	<'a' - 'z' : 'A'>
3312029SacheMAPUPPER        <0xc0 - 0xd6 : 0xc0>
3412029SacheMAPUPPER        <0xd8 - 0xde : 0xd8>
3512029SacheMAPUPPER        <0xe0 - 0xf6 : 0xc0>
3612029SacheMAPUPPER        <0xf8 - 0xfe : 0xd8>
3712029SacheTODIGIT       	<'0' - '9' : 0>
3812029SacheTODIGIT       	<'A' - 'F' : 10>
3912029SacheTODIGIT       	<'a' - 'f' : 10>
40