| 598 | } |
| 599 | |
| 600 | static inline struct strbuf **strbuf_split_max(const struct strbuf *sb, |
| 601 | int terminator, int max) |
| 602 | { |
| 603 | return strbuf_split_buf(sb->buf, sb->len, terminator, max); |
| 604 | } |
| 605 | |
| 606 | static inline struct strbuf **strbuf_split(const struct strbuf *sb, |
| 607 | int terminator) |
no test coverage detected