]> git.proxmox.com Git - libgit2.git/blame - src/config.h
Update Clay script
[libgit2.git] / src / config.h
CommitLineData
6d7bb4e0
CMN
1#ifndef INCLUDE_config_h__
2#define INCLUDE_config_h__
3
c0335005 4#include "git2.h"
6d7bb4e0 5#include "git2/config.h"
c0335005 6#include "vector.h"
44daec42 7#include "repository.h"
6b45cb8a 8
8adbf2ed 9#define GIT_CONFIG_FILENAME ".gitconfig"
b22d1479 10#define GIT_CONFIG_FILENAME_INREPO "config"
8adbf2ed 11
5d4cd003 12struct git_config {
b0b527e0 13 git_vector files;
44daec42 14 git_repository *repo;
5d4cd003
CMN
15};
16
17#endif