hex-ll: separate out non-hash-algo functions

In order to further reduce all-in-one headers, separate out functions in
hex.h that do not operate on object hashes into its own file, hex-ll.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>
This commit is contained in:
Calvin Wan
2023-09-29 14:20:48 -07:00
committed by Junio C Hamano
parent 94e83dcf5b
commit d88e8106e8
10 changed files with 83 additions and 75 deletions

View File

@ -1,6 +1,6 @@
#include "git-compat-util.h"
#include "gettext.h"
#include "hex.h"
#include "hex-ll.h"
#include "strbuf.h"
#include "string-list.h"
#include "utf8.h"