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

/freebsd-10.1-release/contrib/groff/src/devices/grohtml/
H A Dhtml-table.h74 int add_column (int coln, int hstart, int hend, char align);
75 cols *get_column (int coln);
76 int insert_column (int coln, int hstart, int hend, char align);
H A Dhtml-table.cpp514 int html_table::add_column (int coln, int hstart, int hend, char align) argument
516 cols *c = get_column(coln);
519 return insert_column(coln, hstart, hend, align);
525 * get_column - returns the column, coln.
528 cols *html_table::get_column (int coln) argument
532 while (c != NULL && coln != c->no)
535 if (c != NULL && coln == c->no)
542 * insert_column - inserts a column, coln.
547 int html_table::insert_column (int coln, int hstart, int hend, char align) argument
553 while (c != NULL && c->no < coln) {
[all...]

Completed in 43 milliseconds