| 592 | int terminator, int max); |
| 593 | |
| 594 | static inline struct strbuf **strbuf_split_str(const char *str, |
| 595 | int terminator, int max) |
| 596 | { |
| 597 | return strbuf_split_buf(str, strlen(str), terminator, max); |
| 598 | } |
| 599 | |
| 600 | static inline struct strbuf **strbuf_split_max(const struct strbuf *sb, |
| 601 | int terminator, int max) |
nothing calls this directly
no test coverage detected