暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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_