Lines Matching defs:c
6 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
10 * Copyright (c) 1980 Regents of the University of California.
25 #define isauxsp(c) (Z=((unsigned)(c)), isauxspZ)
30 #define iswdigit(c) isdigit(c)
31 #define iswalpha(c) isalpha(c)
32 #define isphonogram(c) 0
33 #define isideogram(c) 0
34 #define isauxsp(c) 0
37 extern unsigned short _cmap[];/* Defined in sh.char.c */
52 #define quoted(c) ((unsigned)(c) & QUOTE)
55 #define cmap(c, bits) (Z=((unsigned)(c)), cmapZ(bits))
57 #define isglob(c) cmap(c, _GLOB)
58 #define ismeta(c) cmap(c, _META)
59 #define digit(c) cmap(c, _DIG)
60 #define issp(c) (Z=((unsigned)(c)), cmapZ( _SP)||isauxspZ)
61 /*WAS isspace(c)*/
62 #define isspnl(c) (Z=((unsigned)(c)), cmapZ( _SP|_NL)||isauxspZ)
63 #define letter(c) \
64 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\
66 #define alnum(c) \
67 (Z=((unsigned)(c)), !quoted(Z)&&(iswalpha(Z)||((Z)=='_')\