Revision 2d52ea93a7ca451b967f180e0ea0d32404749a66 authored by Erik Faye-Lund on 01 November 2011, 11:56:21 UTC, committed by Junio C Hamano on 01 November 2011, 17:02:11 UTC
Earlier we moved this header file in the code but forgot to
update the Makefile that refers to it.

Signed-off-by: Erik Faye-Lund <kusmabite@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c09cd77
Raw File
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