Staging
v0.5.1
https://github.com/git/git
Revision b142da2a5dec8f868a61322e2ab591e9a008ec3b authored by Junio C Hamano on 17 October 2009, 06:56:55 UTC, committed by Junio C Hamano on 17 October 2009, 06:57:19 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 050dfc4
Raw File
Tip revision: b142da2a5dec8f868a61322e2ab591e9a008ec3b authored by Junio C Hamano on 17 October 2009, 06:56:55 UTC
GIT 1.6.5.1
Tip revision: b142da2
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_email(struct string_list *mailmap, const char *email, char *name, int maxlen);
int map_user(struct string_list *mailmap,
	     char *email, int maxlen_email, char *name, int maxlen_name);

#endif
back to top