1 #include "../git-compat-util.h"
6 DIR *opendir(const char *name
)
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] = '*';
20 p
->dd_handle
= _findfirst(p
->dd_name
, &p
->dd_dta
);
22 if (p
->dd_handle
== -1) {
28 int closedir(DIR *dir
)
30 _findclose(dir
->dd_handle
);