Revision 247f9d23da8cfd255533433ad2aa07d172afac0b authored by Junio C Hamano on 04 January 2012, 19:21:42 UTC, committed by Junio C Hamano on 04 January 2012, 19:21:42 UTC
* maint:
  t5550: repack everything into one file
  Catch invalid --depth option passed to clone or fetch
2 parent s 4570aeb + 1327d83
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