diff options
| author | Edward Thomson <ethomson@edwardthomson.com> | 2017-12-30 08:09:22 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-30 08:09:22 -0800 |
| commit | e14bf97ebbed574dd23dc937a05994074baad91c (patch) | |
| tree | 7ba7575994ca7d35bb9802a0d113f604faed0f9d /src/object.h | |
| parent | 083b1a2e2d8d190db02db3db0dad4fa742eccb02 (diff) | |
| parent | 456e52189c95315028d668f9e508798d490765e2 (diff) | |
| download | libgit2-e14bf97ebbed574dd23dc937a05994074baad91c.tar.gz | |
Merge pull request #4443 from libgit2/ethomson/large_loose_blobs
Inflate large loose blobs
Diffstat (limited to 'src/object.h')
| -rw-r--r-- | src/object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/object.h b/src/object.h index ff61c1d33..e46c9cafa 100644 --- a/src/object.h +++ b/src/object.h @@ -30,6 +30,8 @@ int git_object__from_odb_object( int git_object__resolve_to_type(git_object **obj, git_otype type); +git_otype git_object_stringn2type(const char *str, size_t len); + int git_oid__parse(git_oid *oid, const char **buffer_out, const char *buffer_end, const char *header); void git_oid__writebuf(git_buf *buf, const char *header, const git_oid *oid); |
