la_LN.US-ASCII.src revision 175588
1168515Sgshapiro/*
2261363Sgshapiro * Standard LOCALE_CTYPE for the US-ASCII Locale
3168515Sgshapiro *
4168515Sgshapiro * $FreeBSD: head/share/mklocale/la_LN.US-ASCII.src 175588 2008-01-23 04:25:10Z ache $
5168515Sgshapiro */
6168515SgshapiroENCODING        "ASCII"
7168515SgshapiroVARIABLE        Strict 7bit US-ASCII locale
8168515Sgshapiro
9266692SgshapiroALPHA		'A' - 'Z' 'a' - 'z'
10168515SgshapiroCONTROL		0x00 - 0x1f 0x7f
11168515SgshapiroDIGIT		'0' - '9'
12168515SgshapiroGRAPH		0x21 - 0x7e
13168515SgshapiroLOWER		'a' - 'z'
14168515SgshapiroPUNCT		0x21 - 0x2f 0x3a - 0x40 0x5b - 0x60 0x7b - 0x7e
15168515SgshapiroSPACE		0x09 - 0x0d 0x20
16168515SgshapiroUPPER		'A' - 'Z'
17168515SgshapiroXDIGIT          '0' - '9' 'a' - 'f' 'A' - 'F'
18168515SgshapiroBLANK		' ' '\t'
19168515SgshapiroPRINT		0x20 - 0x7e
20
21MAPLOWER       	<'A' - 'Z' : 'a'>
22MAPLOWER       	<'a' - 'z' : 'a'>
23
24MAPUPPER       	<'A' - 'Z' : 'A'>
25MAPUPPER       	<'a' - 'z' : 'A'>
26
27TODIGIT       	<'0' - '9' : 0>
28TODIGIT       	<'A' - 'F' : 10>
29TODIGIT       	<'a' - 'f' : 10>
30