Searched refs:isalpha (Results 1 - 25 of 326) sorted by relevance

1234567891011>>

/netbsd-current/lib/libc/citrus/
H A Dcitrus_bcs_strtol.c55 #undef isalpha macro
56 #define isalpha(c) _bcs_isalpha(c) macro
H A Dcitrus_bcs_strtoul.c60 #undef isalpha macro
61 #define isalpha(c) _bcs_isalpha(c) macro
H A Dcitrus_bcs.h55 _CITRUS_BCS_PRED(isalpha, _citrus_bcs_isupper(c) || _citrus_bcs_islower(c))
/netbsd-current/external/cddl/osnet/dist/common/util/
H A Dstrtolctype.h49 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
50 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
/netbsd-current/external/apache2/llvm/dist/libcxx/include/
H A Dctype.h17 int isalpha(int c);
43 #undef isalpha macro
/netbsd-current/external/gpl3/gcc/dist/fixincludes/tests/base/
H A Dctype.h75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS macro
/netbsd-current/external/gpl3/gcc.old/dist/fixincludes/tests/base/
H A Dctype.h75 # define isalpha(__c) (__SB_masks ? (int)__SB_masks[__c] & _IS macro
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
H A Dctype.h36 using std::isalpha;
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
H A Dctype.h36 using std::isalpha;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/
H A Dd-system.h39 #undef isalpha macro
40 #define isalpha(c) ISALPHA(c) macro
/netbsd-current/tests/usr.bin/xlint/lint1/
H A Dmsg_342.c18 int isalpha(int);
42 /* expect+1: warning: argument to 'isalpha' must be 'unsigned char' or EOF, not 'char' [341] */
43 isalpha(c);
/netbsd-current/sys/arch/cobalt/stand/boot/
H A Ddevopen.c70 #define isalpha(c) (((c) >= 'a') && ((c) <= 'z')) macro
73 for (i = 0; isalpha(fname[i]) && (i < devlen); i++)
92 if (!isalpha(fname[i]))
/netbsd-current/sys/arch/hpc/stand/hpcboot/
H A Dfile_ufs.cpp76 else if (isalpha((unsigned char)name[0]) &&
77 isalpha((unsigned char)name[1]) &&
78 isalpha((unsigned char)name[2]) &&
/netbsd-current/sys/arch/mmeye/stand/boot/
H A Ddevopen.c70 #define isalpha(c) (((c) >= 'a') && ((c) <= 'z')) macro
73 for (i = 0; isalpha(fname[i]) && (i < devlen); i++)
85 if (!isalpha(fname[i]))
/netbsd-current/games/hangman/
H A Dgetguess.c60 if (isalpha(ch)) {
/netbsd-current/lib/libc/regex/
H A Dutils.h54 #define iswalpha(a) isalpha(a)
/netbsd-current/lib/libform/
H A Dtype_alpha.c120 while(isalpha((unsigned char)buf[cur]))
162 return (isalpha(c) ? TRUE : FALSE);
/netbsd-current/bin/csh/
H A Dchar.h71 (isalpha((unsigned char) (c)) || (c) == '_'))
77 #define Isalpha(c) (((c) & QUOTE) ? 0 : isalpha((unsigned char) (c)))
/netbsd-current/external/bsd/libbind/dist/bsd/
H A Dstrtoul.c95 else if (isalpha(c))
/netbsd-current/external/bsd/nvi/dist/clib/
H A Dstrtol.c112 else if (isalpha(c))
H A Dstrtoul.c91 else if (isalpha(c))
/netbsd-current/sys/arch/ia64/stand/common/
H A Dstrtol.c117 else if (isalpha(c))
/netbsd-current/sys/arch/mmeye/mmeye/
H A Dautoconf.c119 !isalpha(bi->bootdev[p]))
/netbsd-current/sys/sys/
H A Dctype_inline.h49 #define isalpha(c) ((int)((_ctype_tab_ + 1)[(c)] & _CTYPE_A)) macro
/netbsd-current/include/
H A Dctype.h47 int isalpha(int);

Completed in 285 milliseconds

1234567891011>>