Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 1 | #ifndef MAILMAP_H |
| 2 | #define MAILMAP_H |
| 3 | |
Marius Storm-Olsen | d551a48 | 2009-02-08 15:34:27 +0100 | [diff] [blame] | 4 | int read_mailmap(struct string_list *map, char **repo_abbrev); |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 5 | void clear_mailmap(struct string_list *map); |
| 6 | |
Antoine Pelisse | ea02ffa | 2013-01-05 22:26:40 +0100 | [diff] [blame] | 7 | int map_user(struct string_list *map, |
| 8 | const char **email, size_t *emaillen, const char **name, size_t *namelen); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 9 | |
| 10 | #endif |