diff options
author | John Keeping | 2014-01-12 17:13:51 +0000 |
---|---|---|
committer | Jason A. Donenfeld | 2014-01-14 02:00:07 +0100 |
commit | 632efb25c07c1b014a4e8cfbbea759f517c2aaf6 (patch) | |
tree | d749ef94576b829a4b8fc5ef330beb27de452bf1 /filter.c | |
parent | ed3497b0de6634350cd17b320538fba918d4084c (diff) | |
download | cgit-632efb25c07c1b014a4e8cfbbea759f517c2aaf6.tar.gz cgit-632efb25c07c1b014a4e8cfbbea759f517c2aaf6.tar.bz2 cgit-632efb25c07c1b014a4e8cfbbea759f517c2aaf6.zip |
filter: add fprintf_filter function
This stops the code in cgit.c::print_repo needing to inspect the
cgit_filter structure, meaning that we can abstract out different filter
types that will have different fields that need to be printed.
Signed-off-by: John Keeping <john@keeping.me.uk>
Diffstat (limited to 'filter.c')
-rw-r--r-- | filter.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -63,6 +63,11 @@ done: | |||
63 | 63 | ||
64 | } | 64 | } |
65 | 65 | ||
66 | void cgit_fprintf_filter(struct cgit_filter *filter, FILE *f, const char *prefix) | ||
67 | { | ||
68 | fprintf(f, "%s%s\n", prefix, filter->cmd); | ||
69 | } | ||
70 | |||
66 | struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype) | 71 | struct cgit_filter *cgit_new_filter(const char *cmd, filter_type filtertype) |
67 | { | 72 | { |
68 | struct cgit_filter *f; | 73 | struct cgit_filter *f; |