Revision c2b3f2b3cdbf5ad9feb978dd367d77561a1271f7 authored by Junio C Hamano on 02 July 2024, 16:04:10 UTC, committed by Junio C Hamano on 02 July 2024, 16:27:59 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2c2ddfb
Raw File
mailmap.h
#ifndef MAILMAP_H
#define MAILMAP_H

struct string_list;

extern const char *git_mailmap_file;
extern const char *git_mailmap_blob;

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