Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e0c1ceafc5bece92d35773a75fff59497e1d9bd5 authored by Junio C Hamano on 12 August 2016, 16:17:51 UTC
Git 2.9.3
Tip revision: e0c1cea
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