FSM/FSM_OOP/usr/keyFSM.h

16 lines
170 B
C

#ifndef __KEY_FSM_H_
#define __KEY_FSM_H_
typedef struct _keyFSMData
{
int arrindex;
}KeyFSMData;
typedef struct _KeyFSM KeyFSM;
KeyFSM *createKeyFSM();
#endif