OSDN Git Service

Examine the printf command to pass the test13 on MacOS X
[lha/lha.git] / src / lhdir.h
index 6abefcf..23dd40a 100644 (file)
@@ -1,35 +1,35 @@
 /* ------------------------------------------------------------------------ */
-/* LHa for UNIX    Directory access routine                                                                    */
-/*                                                                                                                                                     */
-/*             Modified                        Nobutaka Watazaki                                                       */
-/* Emulate opendir(), readdir(), closedir() function for LHa                           */
-/*                                                                                                                                                     */
-/*     Ver. 1.14       Soruce All chagned                              1995.01.14      N.Watazaki              */
+/* LHa for UNIX    Directory access routine                                 */
+/*                                                                          */
+/*      Modified                Nobutaka Watazaki                           */
+/* Emulate opendir(), readdir(), closedir() function for LHa                */
+/*                                                                          */
+/*  Ver. 1.14   Soruce All chagned              1995.01.14  N.Watazaki      */
 /* ------------------------------------------------------------------------ */
 
 #ifndef DIRBLKSIZ
-#define DIRBLKSIZ      512
+#define DIRBLKSIZ   512
 #endif
 
 /* ------------------------------------------------------------------------ */
-/*     Type Definition                                                                                                                 */
+/*  Type Definition                                                         */
 /* ------------------------------------------------------------------------ */
 struct direct {
-       int             d_ino;
-       int             d_namlen;
-       char            d_name[256];
+    int             d_ino;
+    int             d_namlen;
+    char            d_name[256];
 };
 
 typedef struct {
-       int             dd_fd;
-       int             dd_loc;
-       int             dd_size;
-       char            dd_buf[DIRBLKSIZ];
+    int             dd_fd;
+    int             dd_loc;
+    int             dd_size;
+    char            dd_buf[DIRBLKSIZ];
 }               DIR;
 
 /* ------------------------------------------------------------------------ */
-/*     Functions                                                                                                                               */
+/*  Functions                                                               */
 /* ------------------------------------------------------------------------ */
-extern DIR                      *opendir();
+extern DIR           *opendir();
 extern struct direct *readdir();
-extern int                      closedir();
+extern int           closedir();