X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/9222837b2743308e4971fc0ad299ca2f73fb20ae..24c7d80020623c5bfda79b5d55c18b4111389656:/src/state.h diff --git a/src/state.h b/src/state.h index 074b1eea..674e1714 100644 --- a/src/state.h +++ b/src/state.h @@ -139,6 +139,10 @@ typedef struct shifts_s #define SHIFT_IS_DISABLED(Shifts, Shift) \ (Shifts->shifts[Shift] == 0) +/* Return the state such these SHIFTS contain a shift/goto to it on + SYMBOL. Aborts if none found. */ +struct state_s; +struct state_s *shifts_to PARAMS ((shifts_t *shifts, symbol_number_t s)); /*-------. | Errs. |