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 | |
Marius Storm-Olsen | 0925ce4 | 2009-02-08 15:34:29 +0100 | [diff] [blame] | 7 | int map_user(struct string_list *mailmap, |
| 8 | char *email, int maxlen_email, char *name, int maxlen_name); |
Junio C Hamano | 7c1c678 | 2007-04-27 00:41:15 -0700 | [diff] [blame] | 9 | |
| 10 | #endif |