]> git.proxmox.com Git - libgit2.git/blobdiff - src/config_file.h
remote: create FETCH_HEAD with a refspecless remote
[libgit2.git] / src / config_file.h
index c31292881b6c3f013ffed20ae802940e5fe3b4c4..d4a1a4061318b793bee1d4c56123786142fe1613 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 the libgit2 contributors
+ * 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.
@@ -9,38 +9,52 @@
 
 #include "git2/config.h"
 
-GIT_INLINE(int) git_config_file_open(git_config_file *cfg)
+GIT_INLINE(int) git_config_file_open(git_config_backend *cfg, unsigned int level)
 {
-       return cfg->open(cfg);
+       return cfg->open(cfg, level);
 }
 
-GIT_INLINE(void) git_config_file_free(git_config_file *cfg)
+GIT_INLINE(void) git_config_file_free(git_config_backend *cfg)
 {
        cfg->free(cfg);
 }
 
+GIT_INLINE(int) git_config_file_get_string(
+       const 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_file *cfg, const char *name, const char *value)
+       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_file *cfg,
-       int (*fn)(const char *key, const char *value, void *data),
+       git_config_backend *cfg,
+       int (*fn)(const git_config_entry *entry, void *data),
        void *data)
 {
-       return cfg->foreach(cfg, NULL, fn, data);
+       return git_config_backend_foreach_match(cfg, NULL, fn, data);
 }
 
 GIT_INLINE(int) git_config_file_foreach_match(
-       git_config_file *cfg,
+       git_config_backend *cfg,
        const char *regexp,
-       int (*fn)(const char *key, const char *value, void *data),
+       int (*fn)(const git_config_entry *entry, void *data),
        void *data)
 {
-       return cfg->foreach(cfg, regexp, fn, data);
+       return git_config_backend_foreach_match(cfg, regexp, fn, data);
 }
 
+extern int git_config_file_normalize_section(char *start, char *end);
+
 #endif