config.h 890 Bytes
Newer Older
Vicent Marti committed
1
/*
schu committed
2
 * Copyright (C) 2009-2012 the libgit2 contributors
Vicent Marti committed
3 4 5 6
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
7 8 9
#ifndef INCLUDE_config_h__
#define INCLUDE_config_h__

10
#include "git2.h"
11
#include "git2/config.h"
12
#include "vector.h"
13
#include "repository.h"
14

15
#define GIT_CONFIG_FILENAME ".gitconfig"
16
#define GIT_CONFIG_FILENAME_INREPO "config"
17
#define GIT_CONFIG_FILENAME_SYSTEM "gitconfig"
18
#define GIT_CONFIG_FILE_MODE 0666
19

20
struct git_config {
21
	git_refcount rc;
22
	git_vector files;
23 24
};

25 26 27
extern int git_config_find_global_r(git_buf *global_config_path);
extern int git_config_find_system_r(git_buf *system_config_path);

28 29
extern int git_config_parse_bool(int *out, const char *bool_string);

30 31 32
extern int git_config_lookup_map_value(
	git_cvar_map *maps, size_t map_n, const char *value, int *out);

33
#endif