We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ac2f7 commit c1e4ae1Copy full SHA for c1e4ae1
libgit2-sys/lib.rs
@@ -2953,6 +2953,11 @@ extern "C" {
2953
pub fn git_index_entrycount(entry: *const git_index) -> size_t;
2954
pub fn git_index_find(at_pos: *mut size_t, index: *mut git_index, path: *const c_char)
2955
-> c_int;
2956
+ pub fn git_index_find_prefix(
2957
+ at_pos: *mut size_t,
2958
+ index: *mut git_index,
2959
+ prefix: *const c_char,
2960
+ ) -> c_int;
2961
pub fn git_index_free(index: *mut git_index);
2962
pub fn git_index_get_byindex(index: *mut git_index, n: size_t) -> *const git_index_entry;
2963
pub fn git_index_get_bypath(
0 commit comments