| 604 | } |
| 605 | |
| 606 | static inline struct strbuf **strbuf_split(const struct strbuf *sb, |
| 607 | int terminator) |
| 608 | { |
| 609 | return strbuf_split_max(sb, terminator, 0); |
| 610 | } |
| 611 | |
| 612 | /* |
| 613 | * Adds all strings of a string list to the strbuf, separated by the given |
no test coverage detected