mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-07 07:10:07 +00:00
Added gitfo_mkdir_recurs() placeholder.
This commit is contained in:
parent
08190e2ad1
commit
1a5204a788
@ -310,3 +310,8 @@ int gitfo_dirent(
|
||||
closedir(dir);
|
||||
return GIT_SUCCESS;
|
||||
}
|
||||
|
||||
int gitfo_mkdir_recurs(const char *path, int mode)
|
||||
{
|
||||
return gitfo_mkdir(path, mode);
|
||||
}
|
@ -58,6 +58,7 @@ extern int gitfo_exists(const char *path);
|
||||
extern int gitfo_open(const char *path, int flags);
|
||||
extern int gitfo_creat(const char *path, int mode);
|
||||
extern int gitfo_isdir(const char *path);
|
||||
extern int gitfo_mkdir_recurs(const char *path, int mode);
|
||||
#define gitfo_close(fd) close(fd)
|
||||
|
||||
extern int gitfo_read(git_file fd, void *buf, size_t cnt);
|
||||
|
Loading…
Reference in New Issue
Block a user