Home
last modified time | relevance | path

Searched refs:bufcol (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/bsd/mdocml/dist/
H A Dhtml.c895 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()
896 h->buf[h->bufcol++] = c; in print_byte()
905 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()
907 h->col = (h->indent + 1) * 2 + h->bufcol + 1; in print_byte()
908 h->bufcol = 0; in print_byte()
922 if (h->bufcol) { in print_endline()
924 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()
925 h->bufcol = 0; in print_endline()
948 } else if (h->bufcol) { in print_endword()
950 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()
[all …]
H A Dhtml.h104 size_t bufcol; /* current buf byte position */ member