TAB
if ((*s = next()) == TAB || *s == '\n' || *s == LF)
if ((*s = next()) == TAB || *s == LF)
if ((*s = next()) == TAB || *s == '\n' || *s == LF
if (breakch == TAB) /* there's another entry */
while ((*s++ ^ *tape++) != TAB); /* read past loc num */
for (numst = s; (*s ^= *tape++) != TAB; s++); /* get number */
ret = fprintf(fp, "%*s", tab * TAB, "");
ret = snprintf(str, siz, "%*s", tab * TAB, "");
#define TB TAB
case TAB:
case TAB:
case TAB: /* adjust column */
column = rounddown2(column + TAB, TAB);
maxlength = roundup(maxlength + 1, TAB);
while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {
while ((cnt = roundup(chcnt + 1, TAB)) <= endcol) {