mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-03 01:58:32 +00:00
12 lines
334 B
C
12 lines
334 B
C
typedef struct {
|
|
const char *reponame;
|
|
const char *worktreename;
|
|
git_repository *repo;
|
|
git_repository *worktree;
|
|
} worktree_fixture;
|
|
|
|
#define WORKTREE_FIXTURE_INIT(repo, worktree) { (repo), (worktree), NULL, NULL }
|
|
|
|
void cleanup_fixture_worktree(worktree_fixture *fixture);
|
|
void setup_fixture_worktree(worktree_fixture *fixture);
|