Revision 456a4c08b8d8ddefda939014c15877ace3e3f499 authored by Junio C Hamano on 06 June 2011, 18:40:14 UTC, committed by Junio C Hamano on 06 June 2011, 18:40:14 UTC
* jk/diff-not-so-quick:
  diff: futureproof "stop feeding the backend early" logic
  diff_tree: disable QUICK optimization with diff filter

Conflicts:
	diff.c
2 parent s 6c92972 + 28b9264
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