summaryrefslogtreecommitdiff
path: root/flexdef.h
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-11-28 16:46:47 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-11-28 16:46:47 +0000
commit981e729e773198a6d3fc13e508274739acc3156e (patch)
treecb3ab81282e98a3b1e137664979481a444b00856 /flexdef.h
parent120cf703e6606329f19aa78077df09de79d787c4 (diff)
-a -> -Ca
all_lower, all_upper -> work on char*
Diffstat (limited to 'flexdef.h')
-rw-r--r--flexdef.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/flexdef.h b/flexdef.h
index c4b98c5..b51d62a 100644
--- a/flexdef.h
+++ b/flexdef.h
@@ -319,7 +319,7 @@ extern struct hash_entry *ccltab[CCL_HASH_SIZE];
* listing backing-up states
* C_plus_plus - if true (i.e., -+ flag), generate a C++ scanner class;
* otherwise, a standard C scanner
- * long_align - if true (-a flag), favor long-word alignment.
+ * long_align - if true (-Ca flag), favor long-word alignment.
* use_read - if true (-f, -F, or -Cr) then use read() for scanner input;
* otherwise, use fread().
* yytext_is_array - if true (i.e., %array directive), then declare
@@ -706,10 +706,10 @@ extern void usage PROTO((void));
extern void add_action PROTO(( char *new_text ));
/* True if a string is all lower case. */
-extern int all_lower PROTO((register Char *));
+extern int all_lower PROTO((register char *));
/* True if a string is all upper case. */
-extern int all_upper PROTO((register Char *));
+extern int all_upper PROTO((register char *));
/* Bubble sort an integer array. */
extern void bubble PROTO((int [], int));