1#ifndef _MSL_COMMON_CTYPE_H
2#define _MSL_COMMON_CTYPE_H
14#define __control_char 0x01
15#define __motion_char 0x02
16#define __space_char 0x04
17#define __punctuation 0x08
19#define __hex_digit 0x20
20#define __lower_case 0x40
21#define __upper_case 0x80
23#define __letter (__lower_case | __upper_case)
24#define __alphanumeric (__letter | __digit)
25#define __graphic (__alphanumeric | __punctuation)
26#define __printable (__graphic | __space_char)
27#define __whitespace (__motion_char | __space_char)
28#define __control (__motion_char | __control_char)
29#define __zero_fill(c) ((int)(unsigned char)(c))
T cLib_calcTimer(T *value)
Definition c_lib.h:74
int isalpha(int c)
Definition ctype.h:33
int isdigit(int c)
Definition ctype.h:34
int tolower(int)
Definition ctype.c:52
int isspace(int c)
Definition ctype.h:35
int _tolower(int c)
Definition ctype.h:39
int toupper(int c)
Definition ctype.h:40
unsigned char __upper_map[]
Definition ctype.c:64
unsigned char __ctype_map[]
Definition ctype.c:16
unsigned char __lower_map[]
Definition ctype.c:30
int isupper(int c)
Definition ctype.h:36
int isxdigit(int c)
Definition ctype.h:37