https://github.com/git/git
Revision c8af1f475afb01b555abe5087b6b2f46b2d00b55 authored by Junio C Hamano on 06 February 2021, 00:31:25 UTC, committed by Junio C Hamano on 06 February 2021, 00:31:25 UTC
Doc update.

* vv/send-email-with-less-secure-apps-access:
  git-send-email.txt: mention less secure app access with Gmail
2 parent s 64971f0 + 155067a
Raw File
Tip revision: c8af1f475afb01b555abe5087b6b2f46b2d00b55 authored by Junio C Hamano on 06 February 2021, 00:31:25 UTC
Merge branch 'vv/send-email-with-less-secure-apps-access' into maint
Tip revision: c8af1f4
blob.h
#ifndef BLOB_H
#define BLOB_H

#include "object.h"

extern const char *blob_type;

struct blob {
	struct object object;
};

struct blob *lookup_blob(struct repository *r, const struct object_id *oid);

int parse_blob_buffer(struct blob *item, void *buffer, unsigned long size);

/**
 * Blobs do not contain references to other objects and do not have
 * structured data that needs parsing. However, code may use the
 * "parsed" bit in the struct object for a blob to determine whether
 * its content has been found to actually be available, so
 * parse_blob_buffer() is used (by object.c) to flag that the object
 * has been read successfully from the database.
 **/

#endif /* BLOB_H */
back to top