mirror of
https://github.com/git/git.git
synced 2024-11-28 04:23:30 +08:00
15 lines
192 B
C
15 lines
192 B
C
|
#ifndef BLOB_H
|
||
|
#define BLOB_H
|
||
|
|
||
|
#include "object.h"
|
||
|
|
||
|
extern const char *blob_type;
|
||
|
|
||
|
struct blob {
|
||
|
struct object object;
|
||
|
};
|
||
|
|
||
|
struct blob *lookup_blob(unsigned char *sha1);
|
||
|
|
||
|
#endif /* BLOB_H */
|