]> git.proxmox.com Git - libgit2.git/blame - src/blob.h
Merge pull request #392 from sschuberth/development
[libgit2.git] / src / blob.h
CommitLineData
bb742ede
VM
1/*
2 * Copyright (C) 2009-2011 the libgit2 contributors
3 *
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
6 */
237da401
VM
7#ifndef INCLUDE_blob_h__
8#define INCLUDE_blob_h__
9
44908fe7 10#include "git2/blob.h"
237da401 11#include "repository.h"
72a3fe42 12#include "odb.h"
237da401
VM
13#include "fileops.h"
14
15struct git_blob {
16 git_object object;
72a3fe42 17 git_odb_object *odb_object;
237da401
VM
18};
19
20void git_blob__free(git_blob *blob);
72a3fe42 21int git_blob__parse(git_blob *blob, git_odb_object *obj);
237da401
VM
22
23#endif