blob: 8b521543ccf38062f0326fdad0e75d7d22578023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef INCLUDE_config_h__
#define INCLUDE_config_h__
#include "git2.h"
#include "git2/config.h"
#include "vector.h"
#define GIT_CONFIG_FILENAME ".gitconfig"
struct git_config {
git_vector files;
};
#endif
|