Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
123456789101112 |
- #ifndef _STATES_H_
- #define _STATES_H_
-
- #include "statemachine.h"
-
- void states_init(void);
- void states_run(struct StateMachineInput smi);
-
- State *states_get(void);
- void states_go_to(State *state);
-
- #endif // _STATES_H_
|