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: 6e48f83cedd13e24d50cddf47f037791ddc5ad4b (plain)
1
2
3
4
5
6
7
#ifndef MAILMAP_H
#define MAILMAP_H

int read_mailmap(struct string_list *map, const char *filename, char **repo_abbrev);
int map_email(struct string_list *mailmap, const char *email, char *name, int maxlen);

#endif