blob.con commit Merge branch 'ma/t7005-bash-workaround' into maint (6262f5c)
   1#include "cache.h"
   2#include "blob.h"
   3#include "repository.h"
   4#include "alloc.h"
   5
   6const char *blob_type = "blob";
   7
   8struct blob *lookup_blob(struct repository *r, const struct object_id *oid)
   9{
  10        struct object *obj = lookup_object(r, oid->hash);
  11        if (!obj)
  12                return create_object(r, oid->hash,
  13                                     alloc_blob_node(r));
  14        return object_as_type(r, obj, OBJ_BLOB, 0);
  15}
  16
  17int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size)
  18{
  19        item->object.parsed = 1;
  20        return 0;
  21}