Subversion Repositories Kolibri OS

Rev

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

Rev 1870 Rev 2967
Line 50... Line 50...
50
}
50
}
Line 51... Line 51...
51
 
51
 
52
#define tolower(c) __tolower(c)
52
#define tolower(c) __tolower(c)
Line -... Line 53...
-
 
53
#define toupper(c) __toupper(c)
-
 
54
 
-
 
55
/*
-
 
56
 * Fast implementation of tolower() for internal usage. Do not use in your
-
 
57
 * code.
-
 
58
 */
-
 
59
static inline char _tolower(const char c)
-
 
60
{
-
 
61
	return c | 0x20;
53
#define toupper(c) __toupper(c)
62
}