config_file.h 1.24 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (C) 2012 the libgit2 contributors
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */
#ifndef INCLUDE_config_file_h__
#define INCLUDE_config_file_h__

#include "git2/config.h"

GIT_INLINE(int) git_config_file_open(git_config_file *cfg)
{
	return cfg->open(cfg);
}

GIT_INLINE(void) git_config_file_free(git_config_file *cfg)
{
	cfg->free(cfg);
}

Russell Belfer committed
22 23 24 25 26 27
GIT_INLINE(int) git_config_file_get_string(
	const char **out, git_config_file *cfg, const char *name)
{
	return cfg->get(cfg, name, out);
}

28 29 30 31 32 33
GIT_INLINE(int) git_config_file_set_string(
	git_config_file *cfg, const char *name, const char *value)
{
	return cfg->set(cfg, name, value);
}

Russell Belfer committed
34 35 36 37 38 39
GIT_INLINE(int) git_config_file_delete(
	git_config_file *cfg, const char *name)
{
	return cfg->del(cfg, name);
}

40 41 42 43 44
GIT_INLINE(int) git_config_file_foreach(
	git_config_file *cfg,
	int (*fn)(const char *key, const char *value, void *data),
	void *data)
{
45 46 47 48 49 50 51 52 53 54
	return cfg->foreach(cfg, NULL, fn, data);
}

GIT_INLINE(int) git_config_file_foreach_match(
	git_config_file *cfg,
	const char *regexp,
	int (*fn)(const char *key, const char *value, void *data),
	void *data)
{
	return cfg->foreach(cfg, regexp, fn, data);
55 56 57 58
}

#endif