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

/freebsd-11-stable/contrib/mdocml/
H A Dhtml.c869 if (h->col + h->bufcol < sizeof(h->buf)) {
870 h->buf[h->bufcol++] = c;
879 fwrite(h->buf, h->bufcol, 1, stdout);
881 h->col = (h->indent + 1) * 2 + h->bufcol + 1;
882 h->bufcol = 0;
896 if (h->bufcol) {
898 fwrite(h->buf, h->bufcol, 1, stdout);
899 h->bufcol = 0;
922 } else if (h->bufcol) {
924 fwrite(h->buf, h->bufcol,
[all...]
H A Dhtml.h100 size_t bufcol; /* current buf byte position */ member in struct:html

Completed in 134 milliseconds