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
1a5204a7
Commit
1a5204a7
authored
Dec 17, 2010
by
nulltoken
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added gitfo_mkdir_recurs() placeholder.
parent
08190e2a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
src/fileops.c
+6
-0
src/fileops.h
+1
-0
No files found.
src/fileops.c
View file @
1a5204a7
...
...
@@ -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
);
}
\ No newline at end of file
src/fileops.h
View file @
1a5204a7
...
...
@@ -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
);
...
...
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