summaryrefslogtreecommitdiff
path: root/object-file.h
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2025-11-03 08:42:07 +0100
committerJunio C Hamano <gitster@pobox.com>2025-11-03 12:18:47 -0800
commitbfb1b2b4ac5cfa99f7d2503b404d282714d84bdf (patch)
tree554946260888f95fb659c4c771871eecacc93e9c /object-file.h
parentf2bd88a308a2754e727cb462e03102307cdfe004 (diff)
object-file: rename `write_object_file()`
Rename `write_object_file()` to `odb_source_loose_write_object()` so that it becomes clear that this is tied to a specific loose object source. This matches our modern naming schema for functions. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'object-file.h')
-rw-r--r--object-file.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/object-file.h b/object-file.h
index ee5b24cec6..36a60e15c4 100644
--- a/object-file.h
+++ b/object-file.h
@@ -62,6 +62,11 @@ int odb_source_loose_has_object(struct odb_source *source,
int odb_source_loose_freshen_object(struct odb_source *source,
const struct object_id *oid);
+int odb_source_loose_write_object(struct odb_source *source,
+ const void *buf, unsigned long len,
+ enum object_type type, struct object_id *oid,
+ struct object_id *compat_oid_in, unsigned flags);
+
/*
* Populate and return the loose object cache array corresponding to the
* given object ID.
@@ -168,11 +173,6 @@ enum unpack_loose_header_result unpack_loose_header(git_zstream *stream,
struct object_info;
int parse_loose_header(const char *hdr, struct object_info *oi);
-int write_object_file(struct odb_source *source,
- const void *buf, unsigned long len,
- enum object_type type, struct object_id *oid,
- struct object_id *compat_oid_in, unsigned flags);
-
struct input_stream {
const void *(*read)(struct input_stream *, unsigned long *len);
void *data;