]> git.ipfire.org Git - thirdparty/git.git/commit - progress.c
parse: separate out parsing functions from config.h
authorCalvin Wan <calvinwan@google.com>
Fri, 29 Sep 2023 21:20:51 +0000 (14:20 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 Sep 2023 22:14:57 +0000 (15:14 -0700)
commitb1bda751739d90e1a94b47397676bcb8eebf16d5
tree63b802377016c46d878d918633ebb1a54c015a5b
parente16be13cfaf1102340c7816d14cec2009a864faf
parse: separate out parsing functions from config.h

The files config.{h,c} contain functions that have to do with parsing,
but not config.

In order to further reduce all-in-one headers, separate out functions in
config.c that do not operate on config into its own file, parse.h,
and update the include directives in the .c files that need only such
functions accordingly.

Signed-off-by: Calvin Wan <calvinwan@google.com>
Signed-off-by: Jonathan Tan <jonathantanmy@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
18 files changed:
Makefile
attr.c
config.c
config.h
pack-objects.c
pack-revindex.c
parse-options.c
parse.c [new file with mode: 0644]
parse.h [new file with mode: 0644]
pathspec.c
preload-index.c
progress.c
prompt.c
rebase.c
t/helper/test-env-helper.c
unpack-trees.c
wrapper.c
write-or-die.c