criss cross rename failure workaround
[git/dscho.git] / compat / msvc.c
blobac04a4ccbdd8319349aa2647374d78fd6639f425
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
6 DIR *opendir(const char *name)
8 int len;
9 DIR *p;
10 p = (DIR*)malloc(sizeof(DIR));
11 memset(p, 0, sizeof(DIR));
12 strncpy(p->dd_name, name, PATH_MAX);
13 len = strlen(p->dd_name);
14 p->dd_name[len] = '/';
15 p->dd_name[len+1] = '*';
17 if (p == NULL)
18 return NULL;
20 p->dd_handle = _findfirst(p->dd_name, &p->dd_dta);
22 if (p->dd_handle == -1) {
23 free(p);
24 return NULL;
26 return p;
28 int closedir(DIR *dir)
30 _findclose(dir->dd_handle);
31 free(dir);
32 return 0;
35 #include "mingw.c"