mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
ef3ca95475
I looped over the toplevel header files, creating a temporary two-line C program for each consisting of #include "git-compat-util.h" #include $HEADER This patch is the result of manually fixing errors in compiling those tiny programs. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
12 lines
292 B
C
12 lines
292 B
C
#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
|