Searched refs:bufcol (Results 1 – 2 of 2) sorted by relevance
1013 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()1014 h->buf[h->bufcol++] = c; in print_byte()1023 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()1025 h->col = (h->indent + 1) * 2 + h->bufcol + 1; in print_byte()1026 h->bufcol = 0; in print_byte()1040 if (h->bufcol) { in print_endline()1042 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()1043 h->bufcol = 0; in print_endline()1066 } else if (h->bufcol) { in print_endword()1068 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()[all …]
99 size_t bufcol; /* current buf byte position */ member