Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blob.h « src - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db37d2c245ab30ee440af690259d0a099c2ba565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef INCLUDE_blob_h__
#define INCLUDE_blob_h__

#include "git/blob.h"
#include "repository.h"
#include "fileops.h"

struct git_blob {
	git_object object;
	gitfo_buf content;
};

void git_blob__free(git_blob *blob);
int git_blob__parse(git_blob *blob);
int git_blob__writeback(git_blob *blob, git_odb_source *src);

#endif