Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 2525 → Rev 2524

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