Code

Update jk/maint-strbuf-missing-init to builtin/ rename
[git.git] / compat / msvc.c
1 #include "../git-compat-util.h"
2 #include "win32.h"
3 #include <conio.h>
4 #include "../strbuf.h"
6 DIR *opendir(const char *name)
7 {
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;
25         }
26         return p;
27 }
28 int closedir(DIR *dir)
29 {
30         _findclose(dir->dd_handle);
31         free(dir);
32         return 0;
33 }
35 #include "mingw.c"