Lines Matching full:rows
49 struct column_entry *rows; member
109 free (c->rows[j].data); in rtbl_destroy()
110 free (c->rows); in rtbl_destroy()
144 col->rows = NULL; in rtbl_add_column_by_id()
170 tmp = realloc(table->columns[c]->rows, in rtbl_new_row()
171 max_rows * sizeof(table->columns[c]->rows)); in rtbl_new_row()
174 table->columns[c]->rows = tmp; in rtbl_new_row()
193 column->width = max (column->width, (int) strlen (column->rows[i].data)); in column_compute_width()
294 tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp)); in add_column_entry()
299 c->rows = tmp; in add_column_entry()
300 c->rows[c->num_rows++] = row; in add_column_entry()
389 /* are there any more rows left? */ in rtbl_format()
421 fprintf (f, "%*s", w, c->rows[j].data); in rtbl_format()