Staging
v0.5.1
https://github.com/git/git
Revision 041bc65923e13313ca1b77681c3b2950b5e0a163 authored by Jonathan Nieder on 19 April 2020, 23:28:57 UTC, committed by Jonathan Nieder on 19 April 2020, 23:28:57 UTC
This merges up the security fix from v2.17.5.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2 parent s d1259ce + 76b54ee
Raw File
Tip revision: 041bc65923e13313ca1b77681c3b2950b5e0a163 authored by Jonathan Nieder on 19 April 2020, 23:28:57 UTC
Git 2.20.4
Tip revision: 041bc65
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

struct string_list;

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