MCPcopy Index your code
hub / github.com/git/git / read_mailmap_string

Function read_mailmap_string

mailmap.c:171–182  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

169}
170
171static void read_mailmap_string(struct string_list *map, char *buf)
172{
173 while (*buf) {
174 char *end = strchrnul(buf, '\n');
175
176 if (*end)
177 *end++ = '\0';
178
179 read_mailmap_line(map, buf);
180 buf = end;
181 }
182}
183
184int read_mailmap_blob(struct repository *repo, struct string_list *map,
185 const char *name)

Callers 1

read_mailmap_blobFunction · 0.85

Calls 1

read_mailmap_lineFunction · 0.85

Tested by

no test coverage detected