Revision 673472a9635805d3b1fcd0038ecc0a9418078685 authored by Johannes Schindelin on 06 February 2023, 08:37:53 UTC, committed by Johannes Schindelin on 06 February 2023, 08:37:53 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent 4084321
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