repo.or.cz
/
alt-git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[PATCH] Various transport programs
[alt-git.git]
/
blob.h
blob
5cbf6d65ee88e1e0c0f1153af4aa7f80c3c48c16
1
#ifndef BLOB_H
2
#define BLOB_H
3
4
#include
"object.h"
5
6
extern
const char
*
blob_type
;
7
8
struct
blob
{
9
struct
object object
;
10
};
11
12
struct
blob
*
lookup_blob
(
unsigned char
*
sha1
);
13
14
#endif
/* BLOB_H */