]> git.sur5r.net Git - cc65/blobdiff - src/ca65/feature.h
Renamed some stuff. Write out the segment size as var, not 32 bit.
[cc65] / src / ca65 / feature.h
index 2766396dcb1485f5a2fc34bad6790e1c865ea247..31ebae223e112feb8ebecd3f3adedff61e910f27 100644 (file)
@@ -6,10 +6,10 @@
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000-2002 Ullrich von Bassewitz                                       */
-/*               Wacholderweg 14                                             */
-/*               D-70597 Stuttgart                                           */
-/* EMail:        uz@musoftware.de                                            */
+/* (C) 2000-2008 Ullrich von Bassewitz                                       */
+/*               Roemerstrasse 52                                            */
+/*               D-70794 Filderstadt                                         */
+/* EMail:        uz@cc65.org                                                 */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
+/* common */
+#include "strbuf.h"
+
+
+
 /*****************************************************************************/
 /*                                          Data                                    */
 /*****************************************************************************/
@@ -45,7 +50,7 @@
 
 
 typedef enum {
-    FEAT_UNKNOWN               = -1,
+    FEAT_UNKNOWN               = -1,
     FEAT_DOLLAR_IS_PC,
     FEAT_LABELS_WITHOUT_COLONS,
     FEAT_LOOSE_STRING_TERM,
@@ -53,7 +58,11 @@ typedef enum {
     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,
 
     /* Special value: Number of features available */
     FEAT_COUNT
@@ -67,12 +76,12 @@ typedef enum {
 
 
 
-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.