The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/lib/ctype.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  *  linux/lib/ctype.c
    3  *
    4  *  Copyright (C) 1991, 1992  Linus Torvalds
    5  */
    6 
    7 #include <linux/ctype.h>
    8 #include <linux/compiler.h>
    9 #include <linux/export.h>
   10 
   11 const unsigned char _ctype[] = {
   12 _C,_C,_C,_C,_C,_C,_C,_C,                                /* 0-7 */
   13 _C,_C|_S,_C|_S,_C|_S,_C|_S,_C|_S,_C,_C,                 /* 8-15 */
   14 _C,_C,_C,_C,_C,_C,_C,_C,                                /* 16-23 */
   15 _C,_C,_C,_C,_C,_C,_C,_C,                                /* 24-31 */
   16 _S|_SP,_P,_P,_P,_P,_P,_P,_P,                            /* 32-39 */
   17 _P,_P,_P,_P,_P,_P,_P,_P,                                /* 40-47 */
   18 _D,_D,_D,_D,_D,_D,_D,_D,                                /* 48-55 */
   19 _D,_D,_P,_P,_P,_P,_P,_P,                                /* 56-63 */
   20 _P,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U|_X,_U,              /* 64-71 */
   21 _U,_U,_U,_U,_U,_U,_U,_U,                                /* 72-79 */
   22 _U,_U,_U,_U,_U,_U,_U,_U,                                /* 80-87 */
   23 _U,_U,_U,_P,_P,_P,_P,_P,                                /* 88-95 */
   24 _P,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L|_X,_L,              /* 96-103 */
   25 _L,_L,_L,_L,_L,_L,_L,_L,                                /* 104-111 */
   26 _L,_L,_L,_L,_L,_L,_L,_L,                                /* 112-119 */
   27 _L,_L,_L,_P,_P,_P,_P,_C,                                /* 120-127 */
   28 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,                        /* 128-143 */
   29 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,                        /* 144-159 */
   30 _S|_SP,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,    /* 160-175 */
   31 _P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,_P,        /* 176-191 */
   32 _U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,_U,        /* 192-207 */
   33 _U,_U,_U,_U,_U,_U,_U,_P,_U,_U,_U,_U,_U,_U,_U,_L,        /* 208-223 */
   34 _L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,_L,        /* 224-239 */
   35 _L,_L,_L,_L,_L,_L,_L,_P,_L,_L,_L,_L,_L,_L,_L,_L};       /* 240-255 */
   36 
   37 EXPORT_SYMBOL(_ctype);

Cache object: ca39751fabb3489ddf10fb675e39cfdb


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.