https://github.com/git/git
Raw File
Tip revision: 6be0559183ac0b40680df314748141d1bdf28e41 authored by Junio C Hamano on 06 April 2011, 17:57:32 UTC
Git 1.7.5-rc1
Tip revision: 6be0559
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