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 218B

123456789101112
  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. #endif // _STATES_H_