Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
b46708aa
Commit
b46708aa
authored
Oct 11, 2012
by
Paul Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Separated git_strarray from common.h. Added doxy comments.
parent
a75770fe
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
60 additions
and
9 deletions
+60
-9
include/git2/checkout.h
+1
-1
include/git2/common.h
+1
-8
include/git2/refs.h
+1
-0
include/git2/remote.h
+1
-0
include/git2/strarray.h
+54
-0
include/git2/tag.h
+1
-0
src/buffer.h
+1
-0
No files found.
include/git2/checkout.h
View file @
b46708aa
...
...
@@ -10,7 +10,7 @@
#include "common.h"
#include "types.h"
#include "indexer.h"
#include "strarray.h"
/**
* @file git2/checkout.h
...
...
include/git2/common.h
View file @
b46708aa
...
...
@@ -85,14 +85,6 @@ GIT_BEGIN_DECL
*/
#define GIT_PATH_MAX 4096
typedef
struct
{
char
**
strings
;
size_t
count
;
}
git_strarray
;
GIT_EXTERN
(
void
)
git_strarray_free
(
git_strarray
*
array
);
GIT_EXTERN
(
int
)
git_strarray_copy
(
git_strarray
*
tgt
,
const
git_strarray
*
src
);
/**
* Return the version of the libgit2 library
* being currently used.
...
...
@@ -128,4 +120,5 @@ GIT_EXTERN(int) git_libgit2_capabilities(void);
/** @} */
GIT_END_DECL
#endif
include/git2/refs.h
View file @
b46708aa
...
...
@@ -10,6 +10,7 @@
#include "common.h"
#include "types.h"
#include "oid.h"
#include "strarray.h"
/**
* @file git2/refs.h
...
...
include/git2/remote.h
View file @
b46708aa
...
...
@@ -12,6 +12,7 @@
#include "refspec.h"
#include "net.h"
#include "indexer.h"
#include "strarray.h"
/**
* @file git2/remote.h
...
...
include/git2/strarray.h
0 → 100644
View file @
b46708aa
/*
* Copyright (C) 2009-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_git_strarray_h__
#define INCLUDE_git_strarray_h__
#include "common.h"
/**
* @file git2/strarray.h
* @brief Git string array routines
* @defgroup git_strarray Git string array routines
* @ingroup Git
* @{
*/
GIT_BEGIN_DECL
/** Array of strings */
typedef
struct
_git_strarray
git_strarray
;
struct
_git_strarray
{
char
**
strings
;
size_t
count
;
};
/**
* Close a string array object
*
* This method must always be called once a git_strarray is no
* longer needed, otherwise memory will leak.
*
* @param array array to close
*/
GIT_EXTERN
(
void
)
git_strarray_free
(
git_strarray
*
array
);
/**
* Copy a string array object from source to target.
*
* Note: target is overwritten and hence should be empty,
* otherwise its contents are leaked.
*
* @param tgt target
* @param src source
*/
GIT_EXTERN
(
int
)
git_strarray_copy
(
git_strarray
*
tgt
,
const
git_strarray
*
src
);
/** @} */
GIT_END_DECL
#endif
include/git2/tag.h
View file @
b46708aa
...
...
@@ -11,6 +11,7 @@
#include "types.h"
#include "oid.h"
#include "object.h"
#include "strarray.h"
/**
* @file git2/tag.h
...
...
src/buffer.h
View file @
b46708aa
...
...
@@ -8,6 +8,7 @@
#define INCLUDE_buffer_h__
#include "common.h"
#include "git2/strarray.h"
#include <stdarg.h>
typedef
struct
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment