Lines Matching defs:row
124 * add a row which is a string array of ncols elements.
125 * 'row' will get freed by table_destroy; you must not free it
128 void table_add_row (Table* t, wchar_t** row)
133 fputs ("adding row: ", stdout);
135 printf("[%s]", row[i]);
140 t->rows[t->nrows] = row;
150 wchar_t** row = xmalloc (str_list_length(list) * sizeof(*row));
155 row[i] = wcsdup (list->str);
156 if (row[i] == NULL)
164 table_add_row (t, row);
168 /* render a row */
171 wchar_t** row = t->rows[rownum];
188 wcscat (*s, row[i]);
193 int nspaces = max(t->widths[i] - wcswidth(row[i], MAX_WIDTH),