Skip to content

Commit 833ed2f

Browse files
committed
fix: Add missing iterator function to git_config_backend
1 parent a5af476 commit 833ed2f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libgit2-sys/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ pub struct git_config_backend {
9999
pub del: Option<extern "C" fn(*mut git_config_backend, *const c_char) -> c_int>,
100100
pub del_multivar:
101101
Option<extern "C" fn(*mut git_config_backend, *const c_char, *const c_char) -> c_int>,
102+
pub iterator:
103+
Option<extern "C" fn(*mut *mut git_config_iterator, *mut git_config_backend) -> c_int>,
102104
pub snapshot:
103105
Option<extern "C" fn(*mut *mut git_config_backend, *mut git_config_backend) -> c_int>,
104106
pub lock: Option<extern "C" fn(*mut git_config_backend) -> c_int>,

0 commit comments

Comments
 (0)