summaryrefslogtreecommitdiff
path: root/src/libgit2.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-07-11 12:35:58 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-07-11 13:15:13 +0100
commitdcb3b86e3a4e6753f49c30ea95cdfc4c5834c651 (patch)
tree27eb642af35adf304e968688b354fc6cb81e55a4 /src/libgit2.h
parenteae5e98be0dfeaebc420cd1b1f94f688d55ae3bb (diff)
downloadlibgit2-ethomson/init-bak.tar.gz
Move libgit2 settings into libgit2.cethomson/init-bak
Diffstat (limited to 'src/libgit2.h')
-rw-r--r--src/libgit2.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/libgit2.h b/src/libgit2.h
new file mode 100644
index 000000000..b1e4fe33d
--- /dev/null
+++ b/src/libgit2.h
@@ -0,0 +1,15 @@
+/*
+ * 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_libgit2_h__
+#define INCLUDE_libgit2_h__
+
+extern int git_libgit2_settings_global_init(void);
+
+extern const char *git_libgit2__user_agent(void);
+extern const char *git_libgit2__ssl_ciphers(void);
+
+#endif