Staging
v0.5.1
https://github.com/git/git
Revision e230c568c4b9a991e3175e5f65171a566fd8e39c authored by Junio C Hamano on 23 August 2013, 18:49:46 UTC, committed by Junio C Hamano on 23 August 2013, 18:49:46 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 0d8beaa
Raw File
Tip revision: e230c568c4b9a991e3175e5f65171a566fd8e39c authored by Junio C Hamano on 23 August 2013, 18:49:46 UTC
Git 1.8.4
Tip revision: e230c56
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 *map,
			 const char **email, size_t *emaillen, const char **name, size_t *namelen);

#endif
back to top