Root/eeshow/file/git-util.h

1/*
2 * file/git-util.h - Git utility functions
3 *
4 * Written 2016 by Werner Almesberger
5 * Copyright 2016 by Werner Almesberger
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 */
12
13#ifndef FILE_GIT_UTIL_H
14#define FILE_GIT_UTIL_H
15
16#include <stdbool.h>
17
18#include <git2.h>
19
20
21bool git_repo_is_dirty(git_repository *repo);
22void git_init_once(void);
23
24#endif /* !FILE_GIT_UTIL_H */
25

Archive Download this file

Branches:
master



interactive