No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

states.h 246B

1234567891011121314
  1. #ifndef _STATES_H_
  2. #define _STATES_H_
  3. #include "statemachine.h"
  4. void states_init(void);
  5. void states_run(struct StateMachineInput smi);
  6. State *states_get(void);
  7. void states_go_to(State *state);
  8. extern StateText sm_error;
  9. #endif // _STATES_H_