Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2524 → Rev 2525

/trunk/uspace/lib/libc/include/ctype.h
45,9 → 45,14
return ((c >= '0') && (c <= '9'));
}
 
static inline int isalnum(int c)
{
return (isalpha(c) || isdigit(c));
}
 
static inline int isspace(int c)
{
switch(c) {
switch (c) {
case ' ':
case '\n':
case '\t':