Reformat
[yaz-moved-to-github.git] / src / dirent.c
index 3cf8ef9..ee83a8c 100644 (file)
@@ -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