mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
b1d78d77bf
This patch adds the process_trailers() function that calls all the previously added processing functions and then prints the results on the standard output. Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
6 lines
148 B
C
6 lines
148 B
C
#ifndef TRAILER_H
|
|
#define TRAILER_H
|
|
|
|
void process_trailers(const char *file, int trim_empty, struct string_list *trailers);
|
|
|
|
#endif /* TRAILER_H */
|