Revision 378b51993aa022c432b23b7f1bafd921b7c43835 authored by René Scharfe on 19 June 2022, 05:38:50 UTC, committed by Junio C Hamano on 21 June 2022, 15:58:04 UTC
Remove duplicate "loose objects".

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent a613164
Raw File
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

struct string_list;

int read_mailmap(struct string_list *map);
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