FSM/vscode/FSM_OOP/childtest/childFSM.h

16 lines
186 B
C
Raw Normal View History

2024-01-30 15:50:34 +08:00
#ifndef __CHILD_FSM_H_
#define __CHILD_FSM_H_
typedef struct _childFSMData
{
int arrindex;
}ChildFSMData;
typedef struct _ChildFSM ChildFSM;
ChildFSM *createChildFSM();
#endif