Searched defs:pptype (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/lib/libpp/common/
H A Dpp.h85 #define pptype (ppctype-(CHAR_MIN)) macro
87 #define pptype (ppctype) macro
94 #define ppisdig(c) ((pptype)[c]&C_DIG)
95 #define ppisid(c) ((pptype)[c]&C_ID)
96 #define ppisidig(c) ((pptype)[c]&(C_ID|C_DIG))
97 #define ppismac(c) ((pptype)[c]&(C_ID|C_DIG|C_SPLICE))
98 #define ppissplice(c) ((pptype)[c]&C_SPLICE)
100 #define setid(c) ((pptype)[c]|=C_ID)
101 #define clrid(c) ((pptype)[c]&=~C_ID)
102 #define setdig(c) ((pptype)[
[all...]

Completed in 60 milliseconds