Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mailmap.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5c3664322023d6552cb24006d833aa08224ff6f (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef MAILMAP_H
#define MAILMAP_H

int read_mailmap(struct string_list *map, char **repo_abbrev);
void clear_mailmap(struct string_list *map);

int map_user(struct string_list *mailmap,
	     char *email, int maxlen_email, char *name, int maxlen_name);

#endif