summaryrefslogtreecommitdiff
path: root/tables.h
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-09-09 19:25:56 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-09-09 19:25:56 +0000
commitb670bc6c09e8bd33f48db9f1db3782eac0b0b0b4 (patch)
tree6581909a842d6bc1ed15f0af17cee697600fe5c1 /tables.h
parenta953d6fb60d4221ef08d90820f015fb58678b48a (diff)
Table deserialization works for everything except --fast scanners.
Scanners can auto-verify serialized table integrity via --tables-verify. Added tables API items to TODO list. test-table-opts is becoming exhaustive (a good thing).
Diffstat (limited to 'tables.h')
-rw-r--r--tables.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/tables.h b/tables.h
index 1eec7a7..3528951 100644
--- a/tables.h
+++ b/tables.h
@@ -56,9 +56,10 @@ struct yytbl_writer {
* tablestoggle - if true, output external tables code while processing skel
* tablesfilename - filename for external tables
* tableswr - writer for external tables
- *
+ * tablesverify - true if tables-verify option specified
+ * gentables - true if we should spit out the normal C tables
*/
-extern bool tablesext, tablestoggle;
+extern bool tablesext, tablestoggle, tablesverify,gentables;
extern char *tablesfilename;
extern struct yytbl_writer tableswr;