Searched refs:BUCHAR (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.9.5/uucp-11/uucp/lib/
H A Dstrcas.c21 if (isupper (BUCHAR (b1)))
22 b1 = tolower (BUCHAR (b1));
23 if (isupper (BUCHAR (b2)))
24 b2 = tolower (BUCHAR (b2));
H A Dstrncs.c24 if (isupper (BUCHAR (b1)))
25 b1 = tolower (BUCHAR (b1));
26 if (isupper (BUCHAR (b2)))
27 b2 = tolower (BUCHAR (b2));
H A Dmemchr.c42 c = BUCHAR (c);
48 if (BUCHAR (*char_ptr) == c)
125 if (BUCHAR (cp[0]) == c)
127 if (BUCHAR (cp[1]) == c)
129 if (BUCHAR (cp[2]) == c)
131 if (BUCHAR (cp[3]) == c)
142 if (BUCHAR (*char_ptr) == c)
H A Dmemcmp.c17 return BUCHAR (*--p1) - BUCHAR (*--p2);
H A Dspool.c27 if (*z == '/' || ! isprint (BUCHAR (*z)) || isspace (BUCHAR (*z)))
H A Descape.c73 while (isxdigit (BUCHAR (zfrom[1])))
75 if (isdigit (BUCHAR (zfrom[1])))
77 else if (isupper (BUCHAR (zfrom[1])))
H A Dquotes.c59 else if (fbackslashonly || isgraph (BUCHAR (*z)))
63 sprintf (zto, "\\%03o", (unsigned int) BUCHAR (*z));
H A Dstrtol.c71 while (isspace(BUCHAR (*s)))
118 for (c = BUCHAR (*s); c != '\0'; c = BUCHAR (*++s))
H A Ddebug.c107 if (isprint (BUCHAR (ichar))
133 sprintf (z, "%03o", (unsigned int) BUCHAR (ichar));
H A Dgetopt.c495 argv[0], BUCHAR (c));
/macosx-10.9.5/uucp-11/uucp/uuconf/
H A Dgrdcmp.c50 b1 = (int) BUCHAR (barg1);
51 b2 = (int) BUCHAR (barg2);
H A Dsplit.c57 while (isspace (BUCHAR (*zline)))
90 while (*zline != '\0' && ! isspace (BUCHAR (*zline)))
H A Dtime.c100 if (isupper (BUCHAR (bfirst)))
101 bfirst = tolower (BUCHAR (bfirst));
111 || (isupper (BUCHAR ((*pz)[0]))
112 && (int) bfirst == (int) tolower (BUCHAR ((*pz)[0]))))
142 if (isupper (BUCHAR (bfirst)))
143 bfirst = tolower (BUCHAR (bfirst));
167 while (isalpha (BUCHAR (*z)));
170 if (! isdigit (BUCHAR (*z)))
180 if (*zendnum != '-' || ! isdigit (BUCHAR (zendnum[1])))
H A Dcmdlin.c83 while (*z != '\0' && isspace (BUCHAR (*z)))
126 while (*z != '\0' && ! isspace (BUCHAR (*z)))
H A Dhdial.c85 if (isspace (BUCHAR (zline[0])) || zline[0] == '#')
H A Dhport.c97 if (isspace (BUCHAR (zline[0])) || zline[0] == '#')
145 while (*z != '\0' && ! isdigit (BUCHAR (*z)))
H A Dhsinfo.c140 if (isspace (BUCHAR (zline[0])) || zline[0] == '#')
305 while (*z != '\0' && ! isdigit (BUCHAR (*z)))
/macosx-10.9.5/uucp-11/uucp/unix/
H A Dwldcrd.c181 while (*zSwildcard != '\0' && ! isspace (BUCHAR (*zSwildcard)))
188 while (*zSwildcard != '\0' && isspace (BUCHAR (*zSwildcard)))
H A Dstatus.c166 while (isspace (BUCHAR (*znext)))
H A Dlock.c284 && isdigit (BUCHAR (ab[0])))
/macosx-10.9.5/uucp-11/uucp/
H A Duucp.h100 BUCHAR -- to convert a character to unsigned. */
108 #define BUCHAR(b) ((unsigned char) (b)) macro
123 #define BUCHAR(b) ((unsigned char) (b)) macro
126 #define BUCHAR(b) ((b) & 0xff) macro
H A Dprot.c181 return BUCHAR (b);
H A Dproty.c193 rpktsize = BUCHAR (abPrecbuf[(iPrecstart + 1) % CRECBUFLEN]);
632 ichk += BUCHAR (*z++);
657 ichk += BUCHAR (*z++);
H A Dcu.c292 && isdigit (BUCHAR (argv[i][1])))
451 if (isdigit (BUCHAR (argv[optind][0])))
1027 sprintf (abescape, "\\%03o", BUCHAR (*zCuvar_escape));
1125 sprintf (abescape, "\\%03o", BUCHAR (*zCuvar_escape));
1263 sprintf (abescape, "\\%03o", BUCHAR (*zCuvar_escape));
1318 sprintf (abchar, "\\%03o", BUCHAR (*z));
1431 sprintf (abescape, "\\%03o", BUCHAR (*zCuvar_escape));
H A Dchat.c727 while (isxdigit (BUCHAR (z[1])))
729 if (isdigit (BUCHAR (z[1])))
731 else if (isupper (BUCHAR (z[1])))
1044 while (*zfrom != '\0' && isalpha (BUCHAR (*zfrom)))
1135 while (b != BUCHAR (bwrite));

Completed in 211 milliseconds

12