]> git.sur5r.net Git - cc65/blobdiff - src/cc65/ident.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / cc65 / ident.h
index f4db625d7da8300744df032eae6fba175ee995b4..d470e198bb448773bb2ed948b310cea4104104f3 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                 ident.h                                  */
+/*                                  ident.h                                  */
 /*                                                                           */
-/*                Identifier handling for the cc65 compiler                 */
+/*                 Identifier handling for the cc65 compiler                 */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
 
 
 /*****************************************************************************/
-/*                                  Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 /* Maximum length of an identifier and the corresponding char array */
-#define MAX_IDENTLEN   64
-#define        IDENTSIZE       (MAX_IDENTLEN+1)
+#define MAX_IDENTLEN    64
+#define IDENTSIZE       (MAX_IDENTLEN+1)
 
 /* Variable that holds an identifer */
 typedef char ident [IDENTSIZE];
@@ -54,7 +54,7 @@ typedef char ident [IDENTSIZE];
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/