| 409 | can then be accessed with standard array notation. */ |
| 410 | |
| 411 | static void |
| 412 | alloc_field (int f, char const *c) |
| 413 | { |
| 414 | if (ncolumns == ncolumns_alloc) |
| 415 | columns = xpalloc (columns, &ncolumns_alloc, 1, -1, sizeof *columns); |
| 416 | columns[ncolumns++] = &field_data[f]; |
| 417 | if (c != NULL) |
| 418 | field_data[f].caption = c; |
| 419 | |
| 420 | affirm (!field_data[f].used); |
| 421 | |
| 422 | /* Mark field as used. */ |
| 423 | field_data[f].used = true; |
| 424 | } |
| 425 | |
| 426 | |
| 427 | /* Given a string, ARG, containing a comma-separated list of arguments |
no outgoing calls
no test coverage detected