| 365 | can then be accessed with standard 2D array notation. */ |
| 366 | |
| 367 | static void |
| 368 | alloc_table_row (void) |
| 369 | { |
| 370 | if (nrows == nrows_alloc) |
| 371 | table = xpalloc (table, &nrows_alloc, 1, -1, sizeof *table); |
| 372 | table[nrows++] = xinmalloc (ncolumns, sizeof *table[0]); |
| 373 | } |
| 374 | |
| 375 | /* Output each cell in the table, accounting for the |
| 376 | alignment and max width of each column. */ |
no outgoing calls
no test coverage detected