| 468 | } |
| 469 | |
| 470 | static struct line * |
| 471 | init_linep (struct line **linep) |
| 472 | { |
| 473 | struct line *line = xzalloc (sizeof *line); |
| 474 | *linep = line; |
| 475 | return line; |
| 476 | } |
| 477 | |
| 478 | /* Read a line from FP into LINE and split it into fields. |
| 479 | Return true if successful. */ |