]> git.sur5r.net Git - cc65/blobdiff - src/common/optdefs.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / common / optdefs.h
index 3fc525cc247329d1914f77e411c31a396b8276ae..55264ca88aeb9043506e742ac0aba49a61ecbbdd 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                        optdefs.h                                 */
+/*                                 optdefs.h                                 */
 /*                                                                           */
-/*                   Definitions for object file options                    */
+/*                    Definitions for object file options                    */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* Type of options */
-#define OPT_ARGMASK    0xC0            /* Mask for argument */
-#define OPT_ARGSTR     0x00            /* String argument */
-#define OPT_ARGNUM     0x40            /* Numerical argument */
+#define OPT_ARGMASK     0xC0            /* Mask for argument */
+#define OPT_ARGSTR      0x00            /* String argument */
+#define OPT_ARGNUM      0x40            /* Numerical argument */
 
-#define OPT_COMMENT    (OPT_ARGSTR+0)  /* Generic comment */
-#define OPT_AUTHOR     (OPT_ARGSTR+1)  /* Author specification */
-#define OPT_TRANSLATOR (OPT_ARGSTR+2)  /* Translator specification */
-#define OPT_COMPILER   (OPT_ARGSTR+3)  /* Compiler specification */
-#define OPT_OS         (OPT_ARGSTR+4)  /* Operating system specification */
+#define OPT_COMMENT     (OPT_ARGSTR+0)  /* Generic comment */
+#define OPT_AUTHOR      (OPT_ARGSTR+1)  /* Author specification */
+#define OPT_TRANSLATOR  (OPT_ARGSTR+2)  /* Translator specification */
+#define OPT_COMPILER    (OPT_ARGSTR+3)  /* Compiler specification */
+#define OPT_OS          (OPT_ARGSTR+4)  /* Operating system specification */
 
-#define        OPT_DATETIME    (OPT_ARGNUM+0)  /* Date/time of translation */
+#define OPT_DATETIME    (OPT_ARGNUM+0)  /* Date/time of translation */
 
 
 
 /* Structure to encode options */
 typedef struct Option Option;
 struct Option {
-    Option*            Next;           /* For list of options */
-    unsigned char      Type;           /* Type of option */
-    unsigned long      Val;            /* Value attribute or string index */
+    Option*             Next;           /* For list of options */
+    unsigned char       Type;           /* Type of option */
+    unsigned long       Val;            /* Value attribute or string index */
 };