fsm.h

来自「国外网站上的一些精典的C程序」· C头文件 代码 · 共 24 行

H
24
字号
/* =======================================================================    FSM.h           Finite State machines.                    Version 0.01x, 93-08-04. _____              This version is Public Domain. /_|__|             A.Reitsma, Delft, Nederland./  | \  --------------------------------------------------------------- */struct FSMstate_entry{    int state ;    int cond  ;    int next  ;    int (*action)(int);};#define STATE_LIST_END  { -1, -1, 0, NULL }#define LIST_DEFAULT   -1int FSMsetup( struct FSMstate_entry * StateTable );int FSMaction( int Cond );/* === FSM.h ========================================================== */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?