FSM/vscode/FSM_OOP/childtest/parentFSM.h

14 lines
192 B
C

#ifndef __PARENT_FSM_H_
#define __PARENT_FSM_H_
typedef struct _parentFSMData
{
int arrindex;
}ParentFSMData;
typedef struct _ParentFSM ParentFSM;
ParentFSM *createParentFSM();
#endif