Sha256: 39a3b62294a46b65549e74d1c3e94624c30277e46703ac3f77771ef5b88049d5

Contents?: true

Size: 1.62 KB

Versions: 34

Compression:

Stored size: 1.62 KB

Contents

/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * 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_backend *cfg, unsigned int level)
{
	return cfg->open(cfg, level);
}

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

GIT_INLINE(int) git_config_file_get_string(
	git_config_entry **out, git_config_backend *cfg, const char *name)
{
	return cfg->get(cfg, name, out);
}

GIT_INLINE(int) git_config_file_set_string(
	git_config_backend *cfg, const char *name, const char *value)
{
	return cfg->set(cfg, name, value);
}

GIT_INLINE(int) git_config_file_delete(
	git_config_backend *cfg, const char *name)
{
	return cfg->del(cfg, name);
}

GIT_INLINE(int) git_config_file_foreach(
	git_config_backend *cfg,
	int (*fn)(const git_config_entry *entry, void *data),
	void *data)
{
	return git_config_backend_foreach_match(cfg, NULL, fn, data);
}

GIT_INLINE(int) git_config_file_foreach_match(
	git_config_backend *cfg,
	const char *regexp,
	int (*fn)(const git_config_entry *entry, void *data),
	void *data)
{
	return git_config_backend_foreach_match(cfg, regexp, fn, data);
}

GIT_INLINE(int) git_config_file_lock(git_config_backend *cfg)
{
	return cfg->lock(cfg);
}

GIT_INLINE(int) git_config_file_unlock(git_config_backend *cfg, int success)
{
	return cfg->unlock(cfg, success);
}

extern int git_config_file_normalize_section(char *start, char *end);

#endif

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
rugged-0.26.0b5 vendor/libgit2/src/config_file.h
rugged-0.26.0b4 vendor/libgit2/src/config_file.h
rugged-0.26.0b3 vendor/libgit2/src/config_file.h
rugged-0.26.0b2 vendor/libgit2/src/config_file.h
rugged-0.26.0b1 vendor/libgit2/src/config_file.h
rugged-0.25.1.1 vendor/libgit2/src/config_file.h
rugged-0.24.6.1 vendor/libgit2/src/config_file.h
rugged-0.25.1 vendor/libgit2/src/config_file.h
rugged-0.24.5 vendor/libgit2/src/config_file.h
rugged-0.25.0 vendor/libgit2/src/config_file.h
rugged-0.25.0b10 vendor/libgit2/src/config_file.h
rugged-0.25.0b9 vendor/libgit2/src/config_file.h
rugged-0.25.0b8 vendor/libgit2/src/config_file.h
rugged-0.25.0b7 vendor/libgit2/src/config_file.h
rugged-0.25.0b6 vendor/libgit2/src/config_file.h
rugged-0.25.0b5 vendor/libgit2/src/config_file.h
rugged-0.25.0b4 vendor/libgit2/src/config_file.h
rugged-0.25.0b3 vendor/libgit2/src/config_file.h
rugged-0.25.0b2 vendor/libgit2/src/config_file.h
rugged-0.25.0b1 vendor/libgit2/src/config_file.h