Staging
v0.5.1
https://github.com/git/git
Revision 7e100effc6c3a8acbb4bf305638c7b324a63236d authored by Junio C Hamano on 15 September 2010, 19:47:37 UTC, committed by Junio C Hamano on 15 September 2010, 19:47:37 UTC
1 parent 2e1e961
Raw File
Tip revision: 7e100effc6c3a8acbb4bf305638c7b324a63236d authored by Junio C Hamano on 15 September 2010, 19:47:37 UTC
Git 1.7.3 rc2
Tip revision: 7e100ef
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