Staging
v0.5.1
https://github.com/git/git
Revision b91779f17eb19ffc2e63e84728e785cf274b47df authored by Junio C Hamano on 15 December 2010, 19:45:36 UTC, committed by Junio C Hamano on 15 December 2010, 19:45:36 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2 parent s 2850c1a + 9db41eb
Raw File
Tip revision: b91779f17eb19ffc2e63e84728e785cf274b47df authored by Junio C Hamano on 15 December 2010, 19:45:36 UTC
Git 1.7.2.5
Tip revision: b91779f
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