| 171 | } |
| 172 | |
| 173 | void strbuf_tolower(struct strbuf *sb) |
| 174 | { |
| 175 | char *p = sb->buf, *end = sb->buf + sb->len; |
| 176 | for (; p < end; p++) |
| 177 | *p = tolower(*p); |
| 178 | } |
| 179 | |
| 180 | struct strbuf **strbuf_split_buf(const char *str, size_t slen, |
| 181 | int terminator, int max) |
no outgoing calls
no test coverage detected