Home
last modified time | relevance | path

Searched refs:TOLOWER (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/ypcmd/revnetgroup/
H A Dtable.c48 #define TOLOWER(c) (islower(c) ? c : \ macro
58 c1 = TOLOWER(c1) - 'a';
59 c2 = TOLOWER(c2) - 'a';
/illumos-gate/usr/src/cmd/ipf/lib/
H A Dipft_tx.c205 if (!ISALPHA(c) || (TOLOWER(c) != 'o' && TOLOWER(c) != 'i')) {
209 *out = (TOLOWER(c) == 'o') ? 1 : 0;
/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Dportable.h224 #define TOLOWER(c) (isascii(c) && isupper(c) ? _tolower(c) : c) macro
227 #define TOLOWER(c) (isascii(c) && isupper(c) ? tolower(c) : c) macro
/illumos-gate/usr/src/cmd/ipf/tools/
H A Dipfstat.c1567 c = TOLOWER(c);
/illumos-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_compat.h1701 #define TOLOWER(x) tolower((u_char)(x)) macro