]> git.sur5r.net Git - cc65/blobdiff - src/ca65/feature.h
Removed (pretty inconsistently used) tab chars from source code base.
[cc65] / src / ca65 / feature.h
index c366cd9d721e7226f6dc7b67bae8013d2f4e3e55..53016b21cc39b5210aacc529498a8432373a12bf 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                feature.h                                 */
+/*                                 feature.h                                 */
 /*                                                                           */
-/*                 Subroutines for the emulation features                   */
+/*                  Subroutines for the emulation features                   */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 2000-2013, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 #ifndef FEATURE_H
-#define        FEATURE_H
+#define FEATURE_H
+
+
+
+/* common */
+#include "strbuf.h"
 
 
 
 /*****************************************************************************/
-/*                                          Data                                    */
+/*                                   Data                                    */
 /*****************************************************************************/
 
 
 
 typedef enum {
-    FEAT_UNKNOWN               = -1,
+    FEAT_UNKNOWN                = -1,
     FEAT_DOLLAR_IS_PC,
     FEAT_LABELS_WITHOUT_COLONS,
     FEAT_LOOSE_STRING_TERM,
+    FEAT_LOOSE_CHAR_TERM,
     FEAT_AT_IN_IDENTIFIERS,
     FEAT_DOLLAR_IN_IDENTIFIERS,
+    FEAT_LEADING_DOT_IN_IDENTIFIERS,
+    FEAT_ORG_PER_SEG,
     FEAT_PC_ASSIGNMENT,
-    
+    FEAT_MISSING_CHAR_TERM,
+    FEAT_UBIQUITOUS_IDENTS,
+    FEAT_C_COMMENTS,
+    FEAT_FORCE_RANGE,
+    FEAT_UNDERLINE_IN_NUMBERS,
+
     /* Special value: Number of features available */
     FEAT_COUNT
 } feature_t;
@@ -60,17 +73,17 @@ typedef enum {
 
 
 /*****************************************************************************/
-/*                                          Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
-feature_t FindFeature (const char* Key);
+feature_t FindFeature (const StrBuf* Key);
 /* Find the feature in a table and return the corresponding enum value. If the
  * feature is invalid, return FEAT_UNKNOWN.
  */
 
-feature_t SetFeature (const char* Key);
+feature_t SetFeature (const StrBuf* Key);
 /* Find the feature and set the corresponding flag if the feature is known.
  * In any case, return the feature found. An invalid Key will return
  * FEAT_UNKNOWN.