187043Sache/*
287043Sache * Hindi Language Locale with ISCII-DEV Encoding
387043Sache *
487043Sache * Arun Sharma <arun@sharma-home.net> 
587043Sache * Last updated Mon Nov 19 23:07:46 PST 2001
687043Sache *
787043Sache * $FreeBSD$
887043Sache */
987043Sache
1087043SacheENCODING     "NONE"
1187043Sache
1287043SacheALPHA		'A' - 'Z' 'a' - 'z' '�' - '�'
1387117SacheCONTROL		0x00 - 0x1f 0x7f - 0x9f
1487078SacheDIGIT		'0' - '9'
1587117SacheGRAPH           0x21 - 0x7e 0xa1 - 0xfa
1687043SacheLOWER		'a' - 'z'
1787043SachePUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e
1887117SacheSPACE		0x09 - 0x0d 0x20 0xa0
1987043SacheUPPER		'A' - 'Z'
2087078SacheXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
2187117SacheBLANK		' ' '\t' 0xa0
2287117SachePRINT           0x20 - 0x7e 0xa0 - 0xfa
2387043Sache
2487106Sache/* ?DIGIT         '�' - '�' */
2587106Sache
2687043SacheMAPLOWER       	<'A' - 'Z' : 'a'>
2787043SacheMAPLOWER       	<'a' - 'z' : 'a'>
2887108Sache
2987043SacheMAPUPPER       	<'A' - 'Z' : 'A'>
3087043SacheMAPUPPER       	<'a' - 'z' : 'A'>
3187108Sache
3287043SacheTODIGIT       	<'0' - '9' : 0>
3387043SacheTODIGIT       	<'�' - '�' : 0>
3487043SacheTODIGIT       	<'A' - 'F' : 10>
3587043SacheTODIGIT       	<'a' - 'f' : 10>
36