Revision 6720e95b305737fddc776f2904c339a0701e6ae2 authored by René Scharfe on 26 December 2008, 10:12:15 UTC, committed by Junio C Hamano on 27 December 2008, 03:09:56 UTC
Add xstrdup_tolower(), a helper to get a lower case copy of a
string, and use it in two cases.

Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a583971
Raw File
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

int read_mailmap(struct string_list *map, const char *filename, char **repo_abbrev);
int map_email(struct string_list *mailmap, const char *email, char *name, int maxlen);

#endif
back to top