1
0
mirror of https://github.com/git/git.git synced 2024-09-28 08:49:45 +02:00
git/blob.h

15 lines
192 B
C
Raw Normal View History

#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 */