Subversion Repositories HelenOS

Rev

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

Rev 1787 Rev 1866
Line 30... Line 30...
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 */
33
 */
34
 
34
 
35
#ifndef __CTYPE_H__
35
#ifndef LIBC_CTYPE_H_
36
#define __CTYPE_H__
36
#define LIBC_CTYPE_H_
37
 
37
 
38
static inline int isdigit(int c)
38
static inline int isdigit(int c)
39
{
39
{
40
    return ((c >= '0' )&&( c <= '9'));
40
    return ((c >= '0' )&&( c <= '9'));
41
}
41
}
Line 56... Line 56...
56
    }
56
    }
57
}
57
}
58
 
58
 
59
#endif
59
#endif
60
 
60
 
61
 
-
 
62
 
-
 
63
 /** @}
61
/** @}
64
 */
62
 */
65
 
-
 
66
 
-