mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-11 23:21:17 +00:00
6 lines
176 B
C
6 lines
176 B
C
GIT_INLINE(void) reset_checkout_opts(git_checkout_opts *opts)
|
|
{
|
|
git_checkout_opts init_opts = GIT_CHECKOUT_OPTS_INIT;
|
|
memmove(opts, &init_opts, sizeof(git_checkout_opts));
|
|
}
|