| 1703 | /* Return one past the limit of the line array. */ |
| 1704 | |
| 1705 | static inline struct line * |
| 1706 | buffer_linelim (struct buffer const *buf) |
| 1707 | { |
| 1708 | void *linelim = buf->buf + buf->alloc; |
| 1709 | return linelim; |
| 1710 | } |
| 1711 | |
| 1712 | /* Return a pointer to the first character of the field specified |
| 1713 | by KEY in LINE. */ |