Subversion Repositories Kolibri OS

Rev

Rev 2967 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2967 Rev 4065
Line 59... Line 59...
59
static inline char _tolower(const char c)
59
static inline char _tolower(const char c)
60
{
60
{
61
	return c | 0x20;
61
	return c | 0x20;
62
}
62
}
Line -... Line 63...
-
 
63
 
-
 
64
/* Fast check for octal digit */
-
 
65
static inline int isodigit(const char c)
-
 
66
{
-
 
67
	return c >= '0' && c <= '7';
-
 
68
}
63
 
69