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
f0a1d76a
Commit
f0a1d76a
authored
Jun 15, 2018
by
Patrick Steinhardt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tree: remove unused function `git_tree__prefix_position`
parent
31f6b529
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
45 deletions
+0
-45
src/tree.c
+0
-35
src/tree.h
+0
-10
No files found.
src/tree.c
View file @
f0a1d76a
...
...
@@ -334,41 +334,6 @@ const git_tree_entry *git_tree_entry_byid(
return
NULL
;
}
int
git_tree__prefix_position
(
const
git_tree
*
tree
,
const
char
*
path
)
{
struct
tree_key_search
ksearch
;
size_t
at_pos
,
path_len
;
if
(
!
path
)
return
0
;
path_len
=
strlen
(
path
);
TREE_ENTRY_CHECK_NAMELEN
(
path_len
);
ksearch
.
filename
=
path
;
ksearch
.
filename_len
=
(
uint16_t
)
path_len
;
/* Find tree entry with appropriate prefix */
git_array_search
(
&
at_pos
,
tree
->
entries
,
&
homing_search_cmp
,
&
ksearch
);
for
(;
at_pos
<
tree
->
entries
.
size
;
++
at_pos
)
{
const
git_tree_entry
*
entry
=
git_array_get
(
tree
->
entries
,
at_pos
);
if
(
homing_search_cmp
(
&
ksearch
,
entry
)
<
0
)
break
;
}
for
(;
at_pos
>
0
;
--
at_pos
)
{
const
git_tree_entry
*
entry
=
git_array_get
(
tree
->
entries
,
at_pos
-
1
);
if
(
homing_search_cmp
(
&
ksearch
,
entry
)
>
0
)
break
;
}
return
(
int
)
at_pos
;
}
size_t
git_tree_entrycount
(
const
git_tree
*
tree
)
{
assert
(
tree
);
...
...
src/tree.h
View file @
f0a1d76a
...
...
@@ -43,16 +43,6 @@ void git_tree__free(void *tree);
int
git_tree__parse
(
void
*
tree
,
git_odb_object
*
obj
);
/**
* Lookup the first position in the tree with a given prefix.
*
* @param tree a previously loaded tree.
* @param prefix the beginning of a path to find in the tree.
* @return index of the first item at or after the given prefix.
*/
int
git_tree__prefix_position
(
const
git_tree
*
tree
,
const
char
*
prefix
);
/**
* Write a tree to the given repository
*/
int
git_tree__write_index
(
...
...
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