Home
last modified time | relevance | path

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

/openbsd/usr.bin/mandoc/
H A Dhtml.c1020 if (h->col + h->bufcol < sizeof(h->buf)) { in print_byte()
1021 h->buf[h->bufcol++] = c; in print_byte()
1030 fwrite(h->buf, h->bufcol, 1, stdout); in print_byte()
1033 h->bufcol = 0; in print_byte()
1047 if (h->bufcol) { in print_endline()
1049 fwrite(h->buf, h->bufcol, 1, stdout); in print_endline()
1050 h->bufcol = 0; in print_endline()
1073 } else if (h->bufcol) { in print_endword()
1075 fwrite(h->buf, h->bufcol, 1, stdout); in print_endword()
1076 h->col += h->bufcol + 1; in print_endword()
[all …]
H A Dhtml.h101 size_t bufcol; /* current buf byte position */ member