Searched refs:bufcol (Results 1 – 2 of 2) sorted by relevance
1022 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()1023 h->buf[h->bufcol++] = c; in print_byte()1032 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()1034 h->col = (h->indent + 1) * 2 + h->bufcol + 1; in print_byte()1035 h->bufcol = 0; in print_byte()1049 if (h->bufcol) { in print_endline()1051 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()1052 h->bufcol = 0; in print_endline()1075 } else if (h->bufcol) { in print_endword()1077 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()[all …]
101 size_t bufcol; /* current buf byte position */ member