Ignore:
Timestamp:
Jan 18, 2004, 6:23:12 AM (22 years ago)
Author:
bird
Message:

Added BLANK attribute.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/sys/locale.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r993 r994  
    2222
    2323/* Bit masks for __locale_global.ctype */
    24 #define __UPPER  0x01
    25 #define __LOWER  0x02
    26 #define __DIGIT  0x04
    27 #define __XDIGIT 0x08
    28 #define __CNTRL  0x10
    29 #define __SPACE  0x20
    30 #define __PUNCT  0x40
    31 #define __PRINT  0x80
     24#define __UPPER  0x0001
     25#define __LOWER  0x0002
     26#define __DIGIT  0x0004
     27#define __XDIGIT 0x0008
     28#define __CNTRL  0x0010
     29#define __SPACE  0x0020
     30#define __PUNCT  0x0040
     31#define __PRINT  0x0080
     32#define __BLANK  0x0100
    3233
    3334#ifdef __INTERNAL_DEFS
     
    8889{
    8990  /* Bit flags for every character (for isXXX() function series) */
    90   unsigned char cflags [256];
     91  unsigned short cflags [256];
    9192  /* All uppercased characters */
    9293  unsigned char upcase [256];
Note: See TracChangeset for help on using the changeset viewer.