diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-07-27 01:22:50 +0200 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-07-27 01:22:50 +0200 |
commit | 1e76676fb45a72211cfc6ffd579500b174e7202f (patch) | |
tree | 0bdeef8ce26eea608a87385bf4923e916e8a9d23 /include/git2/remote.h | |
parent | 4930e7218776bb6fda4b7f6e02d0b3bdfdd8bae4 (diff) | |
download | libgit2-1e76676fb45a72211cfc6ffd579500b174e7202f.tar.gz |
Fixup network headers
The network headers were still missing some formalities.
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'include/git2/remote.h')
-rw-r--r-- | include/git2/remote.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/git2/remote.h b/include/git2/remote.h index 7775070d8..723ff8f0e 100644 --- a/include/git2/remote.h +++ b/include/git2/remote.h @@ -28,6 +28,14 @@ #include "git2/common.h" #include "git2/repository.h" #include "git2/refspec.h" +/** + * @file git2/remote.h + * @brief Git remote management functions + * @defgroup git_remote remote management functions + * @ingroup Git + * @{ + */ +GIT_BEGIN_DECL /* * TODO: This functions still need to be implemented: @@ -117,6 +125,6 @@ GIT_EXTERN(int) git_remote_ls(git_remote *remote, git_headarray *refs); */ GIT_EXTERN(void) git_remote_free(struct git_remote *remote); +/** @} */ GIT_END_DECL - #endif |