Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/mandoc/
H A Dhtml.c873 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()
874 h->buf[h->bufcol++] = c; in print_byte()
883 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()
886 h->bufcol = 0; in print_byte()
900 if (h->bufcol) { in print_endline()
902 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()
903 h->bufcol = 0; in print_endline()
926 } else if (h->bufcol) { in print_endword()
928 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()
929 h->col += h->bufcol + 1; in print_endword()
[all …]
H A Dhtml.h95 size_t bufcol; /* current buf byte position */ member