https://github.com/git/git
Raw File
Tip revision: e6dfbcf12b0e70897818cb36903de0625931a5c6 authored by Junio C Hamano on 22 July 2012, 20:07:40 UTC
Git 1.7.11.3
Tip revision: e6dfbcf
mailmap.h
#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
back to top