Searched defs:isalpha (Results 1 – 6 of 6) sorted by relevance
52 #define isalpha(c) undefined_isalpha(c) macro
729 #define isalpha(c) iswalpha(btowc(c)) macro
44 __ctype_inline int isalpha(int __c) in isalpha() function
55 def isalpha(c): return isupper(c) or islower(c) function
127 #define isalpha(c) do_not_use_isalpha_with_safe_ctype macro
91 def isalpha(self): return self.data.isalpha() member in UserString