1b593e1ea4
git-subtree-dir: third_party/git git-subtree-split: cb715685942260375e1eb8153b0768a376e4ece7
12 lines
292 B
C
12 lines
292 B
C
#ifndef MAILMAP_H
|
|
#define MAILMAP_H
|
|
|
|
struct string_list;
|
|
|
|
int read_mailmap(struct string_list *map, char **repo_abbrev);
|
|
void clear_mailmap(struct string_list *map);
|
|
|
|
int map_user(struct string_list *map,
|
|
const char **email, size_t *emaillen, const char **name, size_t *namelen);
|
|
|
|
#endif
|