1 /* 2 * @(#)state.h 3.1 10/29/86 3 */ 4 5 #define INCLUDED_STATE 6 7 /* this defines the state structure used by the key mapping routines */ 8 9 #define state struct State 10 struct State { 11 int match; /* character to match */ 12 int result; /* 3270 control code */ 13 state *next; /* next entry in this same state */ 14 state *address; /* if goto, where is next state */ 15 }; 16