MCPcopy Create free account
hub / github.com/git/git / strbuf_tolower

Function strbuf_tolower

strbuf.c:173–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

171}
172
173void 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
180struct strbuf **strbuf_split_buf(const char *str, size_t slen,
181 int terminator, int max)

Callers 2

canonicalize_clientFunction · 0.85
lock_raw_refFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected