]>
Commit | Line | Data |
---|---|---|
7c1c6782 JH |
1 | #ifndef MAILMAP_H |
2 | #define MAILMAP_H | |
3 | ||
ef3ca954 EN |
4 | struct string_list; |
5 | ||
d551a488 | 6 | int read_mailmap(struct string_list *map, char **repo_abbrev); |
0925ce4d MSO |
7 | void clear_mailmap(struct string_list *map); |
8 | ||
ea02ffa3 AP |
9 | int map_user(struct string_list *map, |
10 | const char **email, size_t *emaillen, const char **name, size_t *namelen); | |
7c1c6782 JH |
11 | |
12 | #endif |