blob: ba2ee7670c5bc363b8058caa15066e63458de097 (
plain)
1
2
3
4
5
6
7
|
#ifndef MAILMAP_H
#define MAILMAP_H
int read_mailmap(struct string_list *map, char **repo_abbrev);
int map_email(struct string_list *mailmap, const char *email, char *name, int maxlen);
#endif
|