Home | History | Annotate | Download | only in include

Lines Matching refs:__CTYPE_INLINE

63 #define	__CTYPE_INLINE	extern __inline __attribute__((__gnu_inline__))
65 #define __CTYPE_INLINE extern __inline
68 #define __CTYPE_INLINE static __inline
102 __CTYPE_INLINE int isalnum(int c)
107 __CTYPE_INLINE int isalpha(int c)
112 __CTYPE_INLINE int iscntrl(int c)
117 __CTYPE_INLINE int isdigit(int c)
122 __CTYPE_INLINE int isgraph(int c)
127 __CTYPE_INLINE int islower(int c)
132 __CTYPE_INLINE int isprint(int c)
137 __CTYPE_INLINE int ispunct(int c)
142 __CTYPE_INLINE int isspace(int c)
147 __CTYPE_INLINE int isupper(int c)
152 __CTYPE_INLINE int isxdigit(int c)
157 __CTYPE_INLINE int tolower(int c)
164 __CTYPE_INLINE int toupper(int c)
173 __CTYPE_INLINE int isblank(int c)
180 __CTYPE_INLINE int isascii(int c)
185 __CTYPE_INLINE int toascii(int c)
190 __CTYPE_INLINE int _tolower(int c)
195 __CTYPE_INLINE int _toupper(int c)
205 #undef __CTYPE_INLINE