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: 0f8fd2c586feaccd4bb4df772b8e8393148ccf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MAILMAP_H
#define MAILMAP_H

struct string_list;

extern const char *git_mailmap_file;
extern const char *git_mailmap_blob;

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