Skip to content

Commit

Permalink
CFSM: Small comment fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nhjschulz committed Feb 11, 2024
1 parent e9eb740 commit b438e10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/c_fsm/c_fsm.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ extern "C" {

struct cfsm_Fsm;

typedef void (*cfsm_TransitionFunction)(struct cfsm_Fsm * state);
typedef void (*cfsm_EventFunction)(struct cfsm_Fsm *state, int eventId);
typedef void (*cfsm_ProcessFunction)(struct cfsm_Fsm *state);
typedef void (*cfsm_TransitionFunction)(struct cfsm_Fsm * fsm);
typedef void (*cfsm_EventFunction)(struct cfsm_Fsm * fsm, int eventId);
typedef void (*cfsm_ProcessFunction)(struct cfsm_Fsm * fsm);

/** CFSM context operations */
typedef struct cfsm_Fsm {
Expand Down

0 comments on commit b438e10

Please sign in to comment.