mirror of
https://github.com/git/git
synced 2024-11-05 01:58:18 +00:00
a64215b6cd
Things should be able to depend on object.h without pulling in all of cache.h. Move an enum to allow this. Note that a couple files previously depended on things brought in through cache.h indirectly (revision.h -> commit.h -> object.h -> cache.h). As such, this change requires making existing dependencies more explicit in half a dozen files. The inclusion of strbuf.h in some headers if of particular note: these headers directly embedded a strbuf in some new structs, meaning they should have been including strbuf.h all along but were indirectly getting the necessary definitions. Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
19 lines
427 B
C
19 lines
427 B
C
#include "git-compat-util.h"
|
|
#include "blob.h"
|
|
#include "repository.h"
|
|
#include "alloc.h"
|
|
|
|
const char *blob_type = "blob";
|
|
|
|
struct blob *lookup_blob(struct repository *r, const struct object_id *oid)
|
|
{
|
|
struct object *obj = lookup_object(r, oid);
|
|
if (!obj)
|
|
return create_object(r, oid, alloc_blob_node(r));
|
|
return object_as_type(obj, OBJ_BLOB, 0);
|
|
}
|
|
|
|
void parse_blob_buffer(struct blob *item)
|
|
{
|
|
item->object.parsed = 1;
|
|
}
|