1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-26 10:36:12 +02:00
git/trailer.h
Christian Couder b1d78d77bf trailer: put all the processing together and print
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>
2014-10-13 13:55:27 -07:00

7 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 */