blob: 2c3a4b5bbe58771d07f60f3cc55b4c5859e62cbd (
plain)
1
2
3
4
5
6
7
8
9
|
#include "buffer.h"
#include "git2/object.h"
#include "git2/repository.h"
extern void strip_cr_from_buf(git_buf *buf);
extern void assert_on_branch(git_repository *repo, const char *branch);
extern void reset_index_to_treeish(git_object *treeish);
extern void test_file_contents(const char *path, const char *expected);
extern void test_file_contents_nocr(const char *path, const char *expected);
|