Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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_