* Make room for a new tail cell in the given (non-NIL) list. * * The data in the new tail cell is undefined; the caller should be * sure to fill it in */
| 317 | * sure to fill it in |
| 318 | */ |
| 319 | static void |
| 320 | new_tail_cell(List *list) |
| 321 | { |
| 322 | /* Enlarge array if necessary */ |
| 323 | if (list->length >= list->max_length) |
| 324 | enlarge_list(list, list->length + 1); |
| 325 | list->length++; |
| 326 | } |
| 327 | |
| 328 | /* |
| 329 | * Append a pointer to the list. A pointer to the modified list is |
no test coverage detected