X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fdirent.c;h=ee83a8c4f626213d466ba5ab52473c106e462ad5;hp=3cf8ef969d1cd6a8ff039881e1db720a7d884982;hb=2715f6522ca62ab5dbc886c21ed18945743216f0;hpb=29b39371225c6c6eaa746d8805dd46d42b9b9668;ds=sidebyside diff --git a/src/dirent.c b/src/dirent.c index 3cf8ef9..ee83a8c 100644 --- a/src/dirent.c +++ b/src/dirent.c @@ -28,27 +28,27 @@ struct DIR { struct dirent entry; }; -DIR *opendir (const char *name) +DIR *opendir(const char *name) { char fullName[MAX_PATH+1]; - DIR *dd = malloc (sizeof(*dd)); + DIR *dd = malloc(sizeof(*dd)); if (!dd) return NULL; - strcpy (fullName, name); - strcat (fullName, "\\*.*"); + strcpy(fullName, name); + strcat(fullName, "\\*.*"); dd->handle = FindFirstFile(fullName, &dd->find_data); return dd; } -struct dirent *readdir (DIR *dd) +struct dirent *readdir(DIR *dd) { if (dd->handle == INVALID_HANDLE_VALUE) return NULL; - strcpy (dd->entry.d_name, dd->find_data.cFileName); + strcpy(dd->entry.d_name, dd->find_data.cFileName); if (!FindNextFile(dd->handle, &dd->find_data)) { - FindClose (dd->handle); + FindClose(dd->handle); dd->handle = INVALID_HANDLE_VALUE; } return &dd->entry; @@ -57,9 +57,9 @@ struct dirent *readdir (DIR *dd) void closedir(DIR *dd) { if (dd->handle != INVALID_HANDLE_VALUE) - FindClose (dd->handle); + FindClose(dd->handle); if (dd) - free (dd); + free(dd); } #endif