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