]> git.sur5r.net Git - cc65/blobdiff - src/cc65/typecmp.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / cc65 / typecmp.h
index 6ccaa33713fe9a8c1dfc8d7716b78767afa987b0..65258573804d74a1019ed91cc202705d05a305e4 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                typecmp.h                                 */
+/*                                 typecmp.h                                 */
 /*                                                                           */
-/*              Type compare function for the cc65 C compiler               */
+/*               Type compare function for the cc65 C compiler               */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* Degree of type compatibility. Must be in ascending order */
 typedef enum {
-    TC_INCOMPATIBLE,             /* Distinct types */
-    TC_SIGN_DIFF,                /* Signedness differs */
+    TC_INCOMPATIBLE,              /* Distinct types */
+    TC_SIGN_DIFF,                 /* Signedness differs */
     TC_COMPATIBLE = TC_SIGN_DIFF, /* Compatible types */
-    TC_QUAL_DIFF,                /* Types differ in qualifier of pointer */
-    TC_STRICT_COMPATIBLE,                /* Strict compatibility */
-    TC_EQUAL,                    /* Types are equal */
-    TC_IDENTICAL                 /* Types are identical */
+    TC_QUAL_DIFF,                 /* Types differ in qualifier of pointer */
+    TC_STRICT_COMPATIBLE,         /* Strict compatibility */
+    TC_EQUAL,                     /* Types are equal */
+    TC_IDENTICAL                  /* Types are identical */
 } typecmp_t;
 
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/