]> git.sur5r.net Git - cc65/blobdiff - libsrc/apple2/dir.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / libsrc / apple2 / dir.h
index 0faffd634e39162168aa00b012fd87f08b84c628..369080c47244afd632077cff97ba3e7b392f118f 100644 (file)
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 struct DIR {
-    int                  fd;
+    int           fd;
     unsigned char entry_length;
     unsigned char entries_per_block;
     unsigned char current_entry;
     union {
-       unsigned char bytes[512];
-       struct {
-           unsigned      prev_block;
-           unsigned      next_block;
-           unsigned char entries[1];
-       } content;
+        unsigned char bytes[512];
+        struct {
+            unsigned      prev_block;
+            unsigned      next_block;
+            unsigned char entries[1];
+        } content;
     } block;
 };