X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/6b5a748937ae95af26d78e9e5e7a335351a2970d..0fe9720964da510a2b359af390a3053aace65f9f:/src/getargs.h diff --git a/src/getargs.h b/src/getargs.h index 4eb39812..e97db2b5 100644 --- a/src/getargs.h +++ b/src/getargs.h @@ -21,7 +21,7 @@ #ifndef GETARGS_H_ # define GETARGS_H_ -#include "location.h" +# include "location.h" enum { command_line_prio, grammar_prio, default_prio }; @@ -108,6 +108,18 @@ enum trace /** What debug items bison displays during its run. */ extern int trace_flag; +/*-------------. +| --features. | +`-------------*/ + +enum feature + { + feature_none = 0, /**< No additional feature. */ + feature_caret = 1 << 0, /**< Enhance the output of errors with carets. */ + feature_all = ~0 /**< All above features. */ + }; +/** What additional features to use. */ +extern int feature_flag; /** Process the command line arguments. *