diff options
author | Christian Couder <christian.couder@gmail.com> | 2016-09-04 22:18:23 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-07 12:29:53 -0700 |
commit | 9123d5ddfe1c701a47d034403d302d57acf3e8bb (patch) | |
tree | f6bb48bb14b9dad95792e54b68a35ed82e7e7040 /apply.h | |
parent | 13b5af22f39f5e7d952a4c98ffb7ea25053800c1 (diff) | |
download | git-9123d5ddfe1c701a47d034403d302d57acf3e8bb.tar.gz |
apply: make some parsing functions static again
Some parsing functions that were used in both "apply.c" and
"builtin/apply.c" are now only used in the former, so they
can be made static to "apply.c".
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'apply.h')
-rw-r--r-- | apply.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -97,11 +97,6 @@ struct apply_state { int applied_after_fixing_ws; }; -extern int parse_whitespace_option(struct apply_state *state, - const char *option); -extern int parse_ignorewhitespace_option(struct apply_state *state, - const char *option); - extern int apply_option_parse_exclude(const struct option *opt, const char *arg, int unset); extern int apply_option_parse_include(const struct option *opt, |