Permalink
Cannot retrieve contributors at this time
12 lines (8 sloc)
272 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef MAILMAP_H | |
| #define MAILMAP_H | |
| struct string_list; | |
| int read_mailmap(struct string_list *map); | |
| void clear_mailmap(struct string_list *map); | |
| int map_user(struct string_list *map, | |
| const char **email, size_t *emaillen, const char **name, size_t *namelen); | |
| #endif |