Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 2f312e8851035a85f431911075383265f1519c04 authored by Junio C Hamano on 04 May 2011, 22:47:40 UTC
Git 1.7.5.1
Tip revision: 2f312e8
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