diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2020-07-11 12:35:58 +0100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-10-11 20:14:49 +0100 |
commit | 634c285a0eb016a2d144b35298dabc350d2e7576 (patch) | |
tree | 56c2258b80b1fd762a2e5f9a1d3a219dae43b67a /src/libgit2.h | |
parent | 1ec4702a51b1074fb7109a841dc95a192feb8525 (diff) | |
download | libgit2-ethomson/init.tar.gz |
Move libgit2 settings into libgit2.cethomson/init
Diffstat (limited to 'src/libgit2.h')
-rw-r--r-- | src/libgit2.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libgit2.h b/src/libgit2.h new file mode 100644 index 000000000..6f92a8318 --- /dev/null +++ b/src/libgit2.h @@ -0,0 +1,13 @@ +/* + * 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 const char *git_libgit2__user_agent(void); +extern const char *git_libgit2__ssl_ciphers(void); + +#endif |