~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to extras/mini-os/lib/ctype.c

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef HAVE_LIBC
 
2
#include <ctype.h>
 
3
 
 
4
unsigned char _ctype[] = {
 
5
_C,_C,_C,_C,_C,_C,_C,_C,                        /* 0-7 */
 
6
_C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C,         /* 8-15 */
 
7
_C,_C,_C,_C,_C,_C,_C,_C,                        /* 16-23 */
 
8
_C,_C,_C,_C,_C,_C,_C,_C,                        /* 24-31 */
 
9
_S|_SP,_P,_P,_P,_P,_P,_P,_P,                    /* 32-39 */
 
10
_P,_P,_P,_P,_P,_P,_P,_P,                        /* 40-47 */
 
11
_D,_D,_D,_D,_D,_D,_D,_D,                        /* 48-55 */
 
12
_D,_D,_P,_P,_P,_P,_P,_P,                        /* 56-63 */
 
13
_P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U,      /* 64-71 */
 
14
_U,_U,_U,_U,_U,_U,_U,_U,                        /* 72-79 */
 
15
_U,_U,_U,_U,_U,_U,_U,_U,                        /* 80-87 */
 
16
_U,_U,_U,_P,_P,_P,_P,_P,                        /* 88-95 */
 
17
_P,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L,      /* 96-103 */
 
18
_L,_L,_L,_L,_L,_L,_L,_L,                        /* 104-111 */
 
19
_L,_L,_L,_L,_L,_L,_L,_L,                        /* 112-119 */
 
20
_L,_L,_L,_P,_P,_P,_P,_C,                        /* 120-127 */
 
21
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,                /* 128-143 */
 
22
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,                /* 144-159 */
 
23
_S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,   /* 160-175 */
 
24
_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,       /* 176-191 */
 
25
_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,       /* 192-207 */
 
26
_U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L,       /* 208-223 */
 
27
_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,       /* 224-239 */
 
28
_L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L};      /* 240-255 */
 
29
#endif