Subversion Repositories Kolibri OS

Rev

Rev 9810 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9810 Rev 9811
Line 39... Line 39...
39
#define isxdigit(c) (__is[c + 1] & __XDIGIT) /* '0'-'9', 'a'-'f', 'A'-'F' */
39
#define isxdigit(c) (__is[c + 1] & __XDIGIT) /* '0'-'9', 'a'-'f', 'A'-'F' */
Line 40... Line 40...
40
 
40
 
41
#define isascii(c) (!((c) & (~0x7f)))
41
#define isascii(c) (!((c) & (~0x7f)))
Line 42... Line 42...
42
#define toascii(c) ((c)&0x7f)
42
#define toascii(c) ((c)&0x7f)
43
 
43
 
Line 44... Line 44...
44
DLLAPI int tolower(int c);
44
extern int _FUNC(tolower)(int c);