Sha256: 0b7335a0ef0c01529a3ad3b35d29df7e77fcef9d72919cd14fc2d48ff9601877
Contents?: true
Size: 646 Bytes
Versions: 2
Compression:
Stored size: 646 Bytes
Contents
/* * 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); } GIT_INLINE(int) git_config_file_foreach( git_config_file *cfg, int (*fn)(const char *key, const char *value, void *data), void *data) { return cfg->foreach(cfg, fn, data); } #endif
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rugged-0.17.0b2 | ext/rugged/vendor/libgit2-dist/src/config_file.h |
rugged-0.17.0b1 | ext/rugged/vendor/libgit2-dist/src/config_file.h |